├── .gitignore ├── Makefile ├── Others ├── ScreenShots │ ├── Setting-01.jpg │ ├── Setting-02.jpg │ ├── Setting-03.png │ ├── Setting-cheat.jpg │ ├── WeChatPlugin.jpg │ ├── dice.png │ └── jsb.png ├── autoInsertDylib.sh ├── insert_dylib ├── libsubstrate.dylib ├── popup_close_btn.png └── robot.dylib ├── README.md ├── control ├── robot.plist └── src ├── EmoticonGameCheat.h ├── EmoticonGameCheat.m ├── TKChatRoomSensitiveViewController.h ├── TKChatRoomSensitiveViewController.m ├── TKEditViewController.h ├── TKEditViewController.m ├── TKMultiSelectContactsViewController.h ├── TKMultiSelectContactsViewController.m ├── TKRobotConfig.h ├── TKRobotConfig.m ├── TKSettingViewController.h ├── TKSettingViewController.m ├── TKToast.h ├── TKToast.m ├── Tweak.xm ├── UIColor+Extend.h ├── UIColor+Extend.m ├── UIScreen+Extend.h ├── UIScreen+Extend.m ├── UIView+Layout.h ├── UIView+Layout.m ├── WeChatRobot.h ├── zhFullView.h ├── zhFullView.m ├── zhIconLabel.h ├── zhIconLabel.m ├── zhPopupController.h └── zhPopupController.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Makefile -------------------------------------------------------------------------------- /Others/ScreenShots/Setting-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/Setting-01.jpg -------------------------------------------------------------------------------- /Others/ScreenShots/Setting-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/Setting-02.jpg -------------------------------------------------------------------------------- /Others/ScreenShots/Setting-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/Setting-03.png -------------------------------------------------------------------------------- /Others/ScreenShots/Setting-cheat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/Setting-cheat.jpg -------------------------------------------------------------------------------- /Others/ScreenShots/WeChatPlugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/WeChatPlugin.jpg -------------------------------------------------------------------------------- /Others/ScreenShots/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/dice.png -------------------------------------------------------------------------------- /Others/ScreenShots/jsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/ScreenShots/jsb.png -------------------------------------------------------------------------------- /Others/autoInsertDylib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/autoInsertDylib.sh -------------------------------------------------------------------------------- /Others/insert_dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/insert_dylib -------------------------------------------------------------------------------- /Others/libsubstrate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/libsubstrate.dylib -------------------------------------------------------------------------------- /Others/popup_close_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/popup_close_btn.png -------------------------------------------------------------------------------- /Others/robot.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/Others/robot.dylib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/control -------------------------------------------------------------------------------- /robot.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/robot.plist -------------------------------------------------------------------------------- /src/EmoticonGameCheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/EmoticonGameCheat.h -------------------------------------------------------------------------------- /src/EmoticonGameCheat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/EmoticonGameCheat.m -------------------------------------------------------------------------------- /src/TKChatRoomSensitiveViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKChatRoomSensitiveViewController.h -------------------------------------------------------------------------------- /src/TKChatRoomSensitiveViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKChatRoomSensitiveViewController.m -------------------------------------------------------------------------------- /src/TKEditViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKEditViewController.h -------------------------------------------------------------------------------- /src/TKEditViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKEditViewController.m -------------------------------------------------------------------------------- /src/TKMultiSelectContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKMultiSelectContactsViewController.h -------------------------------------------------------------------------------- /src/TKMultiSelectContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKMultiSelectContactsViewController.m -------------------------------------------------------------------------------- /src/TKRobotConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKRobotConfig.h -------------------------------------------------------------------------------- /src/TKRobotConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKRobotConfig.m -------------------------------------------------------------------------------- /src/TKSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKSettingViewController.h -------------------------------------------------------------------------------- /src/TKSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKSettingViewController.m -------------------------------------------------------------------------------- /src/TKToast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKToast.h -------------------------------------------------------------------------------- /src/TKToast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/TKToast.m -------------------------------------------------------------------------------- /src/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/Tweak.xm -------------------------------------------------------------------------------- /src/UIColor+Extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIColor+Extend.h -------------------------------------------------------------------------------- /src/UIColor+Extend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIColor+Extend.m -------------------------------------------------------------------------------- /src/UIScreen+Extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIScreen+Extend.h -------------------------------------------------------------------------------- /src/UIScreen+Extend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIScreen+Extend.m -------------------------------------------------------------------------------- /src/UIView+Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIView+Layout.h -------------------------------------------------------------------------------- /src/UIView+Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/UIView+Layout.m -------------------------------------------------------------------------------- /src/WeChatRobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/WeChatRobot.h -------------------------------------------------------------------------------- /src/zhFullView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhFullView.h -------------------------------------------------------------------------------- /src/zhFullView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhFullView.m -------------------------------------------------------------------------------- /src/zhIconLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhIconLabel.h -------------------------------------------------------------------------------- /src/zhIconLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhIconLabel.m -------------------------------------------------------------------------------- /src/zhPopupController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhPopupController.h -------------------------------------------------------------------------------- /src/zhPopupController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doio/TKkk-iOSer-WeChatPlugin-iOS/HEAD/src/zhPopupController.m --------------------------------------------------------------------------------