包含emojo 表情的NSString 高度计算
2015-11-13 本文已影响755人
无名氏_1
我有一串字符串 需要计算高度
使用了 <code>- (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:(nullable NSDictionary<NSString *, id> *)attributes context:(nullable NSStringDrawingContext *)context;</code>
方法
当然正常情况下 工作是正常的,但是当用户输入了emojo表情后 显示的就不正常了, 尤其是我使用了YYText
一行的情况 就直接隐藏了
检查过后 发现 上述方法 计算高度 会比emojo所需高度 少了大约4px
解决方法:
使用coreText 原生的高度计算方法
<code>
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);</code>