我在我的php网站上有ckeditor将数据发布到我的应用程序, 该应用不支持表情符号,并希望使用此链接中的NSStringEmojize安装表情符号https://github.com/diy/NSStringEmojize
除了这个错误外,一切看起来都很棒:
这是代码
- (void)testFound
{
NSString *emojiString = @"This comment has an emoji :mushroom:";
STAssertTrue([[emojiString emojizedString] rangeOfString:@"\U0001F344"].location != NSNotFound, nil);
}
- (void)testNotFound
{
NSString *emojiString = @"This comment has an emoji :qwertyasdf:";
STAssertTrue([[emojiString emojizedString] rangeOfString:@"\U0001F344"].location == NSNotFound, nil);