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

IOS UItableview UIcollectionview cell高度自适应

时间:2015-04-26 20:59:43      阅读:2118      评论:0      收藏:0      [点我收藏+]

标签:

1.tableviewcell 高度自适应

   主要方法:

  计算cell高度[cell.contentview systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];

      // NSLayoutConstraint 使用条件 添加相对约束

  ios 7.0 cell 高度计算修改:

   - (CGFloat)tableView:(UITableView )tableView estimatedHeightForRowAtIndexPath:(NSIndexPath )indexPath。 设置cell 高度估值

   - (CGFloat)tableView:(UITableView )tableView HeightForRowAtIndexPath:(NSIndexPath )indexPath  计算cell 显示高度

      在ios7之后 官方修改防止加载大量数据时计算所有cell的高度后才加载数据。

  计算高度需要返回值需要+1.

2.uicollectioncell 高度自适应 

   主要方法:

  计算cell高度[cell systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];

      // NSLayoutConstraint 使用条件 添加相对约束

  

 

IOS UItableview UIcollectionview cell高度自适应

标签:

原文地址:http://www.cnblogs.com/yunhai0417/p/4458252.html

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