码迷,mamicode.com
首页 > 其他好文 > 详细

UITableViewCell的高度与UILabel自适应

时间:2015-06-25 19:17:34      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

UITableViewCell内部只放了一个UILabel,Cell的高度随着UILabel内容的高度变化而变化,可重写UITableView的委托方法动态调整高度,还要设置UILabel.numberOfLines = 0

 override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        if indexPath.row == 1 {
            //If it‘s content cell
            var boundSize = CGSizeMake(300, 500)
            var text = NSString(string: lblContent.text!)
            let attributes = NSDictionary(object: UIFont(name: "Arial", size: 15)!, forKey: NSFontAttributeName)
            let size = text.boundingRectWithSize(boundSize, options: NSStringDrawingOptions.UsesLineFragmentOrigin, attributes: attributes as [NSObject : AnyObject], context: nil)
            return size.height + 10
        } else {
            return 44
        }
    }

 

UITableViewCell的高度与UILabel自适应

标签:

原文地址:http://www.cnblogs.com/foxting/p/4600573.html

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