我正在开发一个 Messenger 跨平台应用程序。我想使用我的自定义图像集作为表情符号。同时搜索我可以使用现有表情符号找到的解决方案。首先我计划在 IOS 中开发。任何有价值的建议/示例代码都会可观
问问题
1482 次
1 回答
2
Long story short, you hardly succeed with UITextView / UILabel.
Alternatives are:
- UIWebView
- Core Text facilities
- Overlaing emoticons upon UITextView
Quote from one good answer:
You would be better off using a UIScrollView and managing UITextViews and UIImageViews in it. UITextView doesn't support adding image inline with text. In fact, it doesn't really support anything other than multiline text.
于 2013-03-13T09:26:14.630 回答