在iOS中,經常遇到需要根據字符串的內容動態指定UILabel,UITextView,UITableViewCell等的高度的情況,這個時候就需要動態的計算字符串內容的高度,下面是計算的方法: [cpp] /** @method 獲取指定寬度情況ixa,字符串value的高度 @param value 待計算的字符串 @param fontSize 字體的大小 @param andWidth 限制字符串顯示區域的寬度 @result float 返回的高度 */ - (float) heightForString:(NSString *)value fontSize:(float)fontSize andWidth:(float)width { CGSize sizeToFit = [value sizeWithFont:[UIFont systemFontOfSize:fontSize] constrainedToSize:CGSizeMake(width, CGFLOAT_MAX) lineBreakMode:UILineBreakModeWordWrap];//此處的換行類型(lineBreakMode)可根據自己的實際情況進行設置 return sizeToFit.height; } 前不久QA報了個文字顯示不全的bug,我看了下代碼,發現是計算高度出了問題。之前的同事在UITableViewCell中使用了UITextView,但是計算高度時使用了和UILabel相同的的方法。 其實UITextView在上下左右分別有一個8px的padding,當使用[NSString sizeWithFont:constrainedToSize:lineBreakMode:]時,需要將UITextView.contentSize.width減去16像素(左右的padding 2 x 8px)。同時返回的高度中再加上16像素(上下的padding),這樣得到的才是UITextView真正適應內容的高度。 示例代碼如下: [html] + (float) heightForTextView: (UITextView *)textView WithText: (NSString *) strText{ float fPadding = 16.0; // 8.0px x 2 CGSize constraint = CGSizeMake(textView.contentSize.width - fPadding, CGFLOAT_MAX); CGSize size = [strText sizeWithFont: textView.font constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap]; float fHeight = size.height + 16.0; return fHeight; }