我可以在文本字段中显示自定义表情符号,因为iPhone的键盘表情符号会显示出来。我检查了文件,但没有找到任何方法。
答案 0 :(得分:1)
您可以使用the Link
中的以下代码- (BOOL) textField: (UITextField *)theTextField shouldChangeCharactersInRange: (NSRange)range replacementString: (NSString *)string {
NSRange range = {NSNotFound, 0};
NSString *s = @"This is a smiley :)";
range.location = 0;
range.length = [s length];
s = [s stringByReplacingOccurrencesOfString:@":)"
withString:@"\ue415"
options:NSCaseInsensitiveSearch
range:range];
}