包含emojo 表情的NSString 高度计算

我有一串字符串 需要计算高度
使用了 - (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:(nullable NSDictionary *)attributes context:(nullable NSStringDrawingContext *)context;
方法

当然正常情况下 工作是正常的,但是当用户输入了emojo表情后 显示的就不正常了, 尤其是我使用了YYText
一行的情况 就直接隐藏了

检查过后 发现 上述方法 计算高度 会比emojo所需高度 少了大约4px

解决方法:
使用coreText 原生的高度计算方法

CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((__bridge CFAttributedStringRef)attributedString);
CGSize targetSize = CGSizeMake(width, CGFLOAT_MAX);
CGSize size = CTFramesetterSuggestFrameSizeWithConstraints(framesetter, CFRangeMake(0, (CFIndex)[attributedString length]), NULL, targetSize, NULL);
CFRelease(framesetter);

你可能感兴趣的:(包含emojo 表情的NSString 高度计算)