閑來無事盔腔,封裝了一個表情鍵盤渊胸,希望對大家有所幫助
1.引入頭文件
#import "FXQEmoticonViewController.h"
2.集成表情鍵盤
FXQEmoticonViewController *emView = [[FXQEmoticonViewController alloc] initWithItemClick:^(FXQEmoticon *emoticon) {
? ? ? ? ? //(1)插入表情
? ? ? ? ? [weakSelf.textView insertEmoticon:emoticon];
}];
(2)獲取textView文本
NSString *str = [self.textView getEmoticonString];
self.textView.text = str;
(3)匹配文字中對應(yīng)的圖片
NSAttributedString *str = [self.textView replaceStrWithEmoticon:self.textView.text];
self.textView.attributedText = str;
(4)演示
(5)demo地址
https://git.oschina.net/iOS_fxq/emoticonKeyBoard.git