如何在 ios (objective-c) 中创建表情符号自定义键盘

How to create Emoji Custom keyBoard in ios (objective-c)

是否可以创建带有表情符号字符的自定义键盘。如果是,那怎么样?或苹果是否允许在我的应用程序中使用此自定义键盘。有什么想法吗??

谢谢

我认为您正在寻找 Text, Web, and Editing Programming Guide for iOS"

The UIKit framework includes support for custom input views and input accessory views. Your application can substitute its own input view for the system keyboard when users edit text or other forms of data in a view. For example, an application could use a custom input view to enter characters from a runic alphabet. You may also attach an input accessory view to the system keyboard or to a custom input view; this accessory view runs along the top of the main input view and can contain, for example, controls that affect the text in some way or labels that display some information about the text.

如果您的应用程序使用 UITextView 和 UITextField 对象进行文本编辑,要获得此功能,只需将自定义视图分配给 inputView 和 inputAccessoryView 属性即可。当文本对象成为第一响应者时,将显示这些自定义视图...