测试已测试 | ✗ |
Lang语言 | Obj-CObjective C |
许可证 | MIT |
释放最新版本 | 2016年10月 |
由 Ayush Goel,Ayush Goel 支持。
用于显示 iOS 支持的所有表情的备用键盘。文档可通过 CocoaDocs 在线查看。
需要添加的功能
要运行示例项目
从 AGEmojiKeyboard/ 中复制类,并从 Resources/ 中复制资源到您的项目中。查看 Example/ 目录,以了解如何更详细地使用类。
ViewController
(可选)来符合 AGEmojiKeyboardViewDataSource 和 AGEmojiKeyboardViewDelegate 协议。textView
的 inputView
。 CGRect keyboardRect = CGRectMake(0, 0, self.view.frame.size.width, 216);
AGEmojiKeyboardView *emojiKeyboardView = [[AGEmojiKeyboardView alloc] initWithFrame:keyboardRect
dataSource:self];
emojiKeyboardView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
emojiKeyboardView.delegate = self;
self.textView.inputView = emojiKeyboardView;
Ayush Goel,[email protected]
AGEmojiKeyboard 以 MIT 许可证提供。有关更多信息,请参阅 LICENSE 文件。