1
2
3
4
5
6
7
8
9
10
11
12
|
?- ( float )tableView:(UITableView *)tableView heightForRowAtIndexPath:( NSIndexPath
*)indexPath{
NSString
*str = [_dataArray objectAtIndex:indexPath.row];
UIFont *tfont = [UIFont systemFontOfSize:14.0];
NSDictionary
* dic = [ NSDictionary
dictionaryWithObjectsAndKeys:tfont, NSFontAttributeName , nil ];
// ios 7
CGSize sizeText = [str boundingRectWithSize:CGSizeMake(320, 1000) options: NSStringDrawingUsesLineFragmentOrigin
attributes:dic context: nil ].size;
// ios 6
CGSize sizeText1 = [str sizeWithFont:[UIFont systemFontOfSize:16.0f] constrainedToSize:CGSizeMake(320, 1000) lineBreakMode: NSLineBreakByCharWrapping ];
return
sizeText1.height+50;
}? |
相关文章
- 11-27让 echarts 柱状图 label 根据柱高度自适应显示在柱内/柱外
- 11-27第二篇、为UITableViewCell 高度自适应加速 缓存cell的高度
- 11-27TableView cell自适应高度-----xib
- 11-27Vue中CodeMirror组件设置高度自适应
- 11-27winform中dataGridView高度和宽度自适应填充完数据的高度和宽度,即dataGridView根据数据自适应大小
- 11-27Sencha touch中Ext.List的使用及高度自适应
- 11-27IOS中用UIFont返回字体的行高、动态改变tableView中Cell的高度
- 11-27GridView 和ListView中自适应高度
- 11-27iframe自适应高度,根据src中页面来得到。
- 11-27css中,在高度已知,写出三栏布局,其中左栏、右栏宽度各位300px,中间自适应