码迷,mamicode.com
首页 > 移动开发 > 详细

iOS8新特性 计算 cell 的高度

时间:2016-03-03 17:33:26      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

http://tutuge.me/2015/08/08/autolayout-example-with-masonry2/

 

1.tableview:

 自动计算 tableVIew 的 cell 的高度:

 1. 创建 tableview 的时候:

        tableview.rowHeight = UITableViewAutomaticDimension;(自动获取 cell 的高度)

 2. 在heightForRowAtIndexPath: 方法中直接返回:UITableViewAutomaticDimension 即可. 

 

#define IOS8_TARGET


#ifdef IOS8_TARGET

// 这里做判断 大于 ios8的时候要做的事放在里面


#endif

 

iOS 8之前的计算方式:

[cell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height + 0.5; 

 [_templateCell.contentViewsystemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height + 0.5f  

iOS8新特性 计算 cell 的高度

标签:

原文地址:http://www.cnblogs.com/Flysouler-1001/p/5239326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!