首页 > 移动平台 > 详细

iOSUITableView自动布局 ----动态cell

时间:2016-03-06 23:19:50      阅读:235      评论:0      收藏:0      [点我收藏+]

动态设置cell的高度

 

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

    if (_testCell == nil) {

        _testCell = [TestCell cellFromNib];

    }

    

    _testCell.name.text = arr[indexPath.row];

    _testCell.name.preferredMaxLayoutWidth = tableView.bounds.size.width - 10;

    CGFloat cellHeight = [_testCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;

    return cellHeight + 1;

}

iOSUITableView自动布局 ----动态cell

原文:http://www.cnblogs.com/fantasy3588/p/5248960.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!