如上图所示...... lineHeight
是橙色框的高度。如何获得蓝色框的高度(即lineHeight
+行间距高度)?谢谢!
更新:我发现lineHeight
的行为有所不同取决于内容中的字符。如果内容全部是英文,则lineHeight是正确的(例如,在默认的UITextView中为21)。但是,当内容与中文字符混合时,UIFont lineHeight
仍会报告为21,而self.textView.contentSize.height
则会以不同方式增加:
English - adding 21 points for each line
Chinese - adding 24 points for each line
更新(sizeWithFont:
)
CGSize constrainedRect = CGSizeMake(1000, 1000);
CGSize rectEnglish = [@"hello\nworld" sizeWithFont:self.textView.font constrainedToSize:constrainedRect lineBreakMode:UILineBreakModeWordWrap];
NSLog(@"width: %.2f height: %.2f", rectEnglish.width, rectEnglish.height);
CGSize rectChinese = [@"你\n好嗎" sizeWithFont:self.textView.font constrainedToSize:constrainedRect lineBreakMode:UILineBreakModeWordWrap];
NSLog(@"width: %.2f height: %.2f", rectChinese.width, rectChinese.height);
输出:
width: 41.00 height: 42.00
width: 34.00 height: 42.00
答案 0 :(得分:15)
你必须使用
yourTextView.font.lineHeight
答案 1 :(得分:1)
尝试使用NSString
UIKit
additions。 -sizeWithFont:
的某些变体应该是您所需要的。