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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

BIN
IMG_0223.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

View File

@ -21,8 +21,7 @@
* [x] 后台抢红包
* [x] 群聊过滤
* [x] 关键词过滤
* [x] 消息防撤回
* [x] 消息防撤回
* [x] 消息防撤回
* [x] 微信步数修改
* [x] 小游戏作弊(剪刀石头布和掷骰子)
* [x] CallKit锁屏接视频语音
@ -31,7 +30,7 @@
安装后在微信设置中点击“微信小助手”
更多请查看下图:
![IMG_0223](./IMG_0223.jpg)
![IMG_0223](./IMG_0223.png)
## 使用:
1.源码学习

View File

@ -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];
}