如何在UITextView中获取一行的高度

时间:2011-02-18 01:31:49

标签: iphone uitextview

enter image description here

如上图所示...... 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

2 个答案:

答案 0 :(得分:15)

你必须使用

yourTextView.font.lineHeight

答案 1 :(得分:1)

尝试使用NSString UIKit additions-sizeWithFont:的某些变体应该是您所需要的。