fix input limt

This commit is contained in:
朱德坤
2020-07-07 15:57:37 +08:00
parent e56c21ab7d
commit c1f35fec36
4 changed files with 3 additions and 4 deletions
@@ -210,7 +210,7 @@
@"用英文双逗号分隔,例(赞,,👍,,...)"][type.intValue];
WCUIAlertView * alert = [[objc_getClass("WCUIAlertView") alloc] initWithTitle:title message:msg];
[alert addBtnTitle:@"确定" target:self sel:@selector(changelikeCountOK:)];
[alert showTextFieldWithMaxLen:5];
[alert showTextFieldWithMaxLen:type.intValue == 2 ? 10000: 5];
[alert setTextFieldDefaultText:str];
[alert show];
}