尝试解决NSStringEmojize问题

时间:2016-10-01 10:34:52

标签: ios objective-c xcode ckeditor emoji

我在我的php网站上有ckeditor将数据发布到我的应用程序, 该应用不支持表情符号,并希望使用此链接中的NSStringEmojize安装表情符号https://github.com/diy/NSStringEmojize

除了这个错误外,一切看起来都很棒:

enter image description here

这是代码

   - (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);

0 个答案:

没有答案