Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/small-tou/yaninput-plugin
可以任意嵌入App的颜文字输入法插件,一句话即可集成颜文字输入功能到自己的App中。
https://github.com/small-tou/yaninput-plugin
Last synced: 7 days ago
JSON representation
可以任意嵌入App的颜文字输入法插件,一句话即可集成颜文字输入功能到自己的App中。
- Host: GitHub
- URL: https://github.com/small-tou/yaninput-plugin
- Owner: small-tou
- Created: 2015-07-11T08:07:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-11T08:36:34.000Z (over 9 years ago)
- Last Synced: 2024-04-15T02:48:56.258Z (7 months ago)
- Language: Objective-C
- Size: 1.53 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yaninput-plugin
可以任意嵌入App的颜文字输入法插件,一句话即可集成颜文字输入功能到自己的App中。使用方式:
1.copy plugin文件夹中的三个文件到你自己的项目中。同时link系统库:libsqlite3.0.dylib
2.在需要用到的controller中引入 YanInputStatic.h
3.在调用的地方设置键盘:
```
//假设textView是你界面中的一个输入框,可以是UITextField也可以是一个UITextView;
UIView *keyboard = [YanInputStatic getYanInputViewwithParentController:self andTextView:textView];
[textView setInputView:keyboard];
//这时候,点击textView开始编辑的时候默认会弹出颜文字键盘。
//如果要切换回系统键盘,把InputView设置成nil即可。
//在example文件夹中有例子
```如果有不懂之处欢迎加我微信:mier963。或者邮箱:[email protected]
我的app《颜文字输入法》目前有60W用户(2015年7月),欢迎加入此插件的第三方app联系互推,或者定制自己的输入法。
界面截图:(切换按钮不是输入法自带的部分)