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

|

|
||||||
|
|
||||||
## 使用:
|
## 使用:
|
||||||
1.源码学习
|
1.源码学习
|
||||||
|
|
|
@ -210,7 +210,7 @@
|
||||||
@"用英文双逗号分隔,例(赞,,👍,,...)"][type.intValue];
|
@"用英文双逗号分隔,例(赞,,👍,,...)"][type.intValue];
|
||||||
WCUIAlertView * alert = [[objc_getClass("WCUIAlertView") alloc] initWithTitle:title message:msg];
|
WCUIAlertView * alert = [[objc_getClass("WCUIAlertView") alloc] initWithTitle:title message:msg];
|
||||||
[alert addBtnTitle:@"确定" target:self sel:@selector(changelikeCountOK:)];
|
[alert addBtnTitle:@"确定" target:self sel:@selector(changelikeCountOK:)];
|
||||||
[alert showTextFieldWithMaxLen:5];
|
[alert showTextFieldWithMaxLen:type.intValue == 2 ? 10000: 5];
|
||||||
[alert setTextFieldDefaultText:str];
|
[alert setTextFieldDefaultText:str];
|
||||||
[alert show];
|
[alert show];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user