mirror of
https://github.com/DKJone/DKWechatHelper.git
synced 2026-09-09 05:03:58 +08:00
fix input limt
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 139 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 204 KiB |
@@ -21,8 +21,7 @@
|
||||
* [x] 后台抢红包
|
||||
* [x] 群聊过滤
|
||||
* [x] 关键词过滤
|
||||
* [x] 消息防撤回
|
||||
* [x] 消息防撤回
|
||||
* [x] 消息防撤回
|
||||
* [x] 微信步数修改
|
||||
* [x] 小游戏作弊(剪刀石头布和掷骰子)
|
||||
* [x] CallKit锁屏接视频语音
|
||||
@@ -31,7 +30,7 @@
|
||||
安装后在微信设置中点击“微信小助手”
|
||||
更多请查看下图:
|
||||
|
||||

|
||||

|
||||
|
||||
## 使用:
|
||||
1.源码学习
|
||||
|
||||
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user