美文网首页
Swift tableViewCell 高度自适应

Swift tableViewCell 高度自适应

作者: 刘宇航iOS | 来源:发表于2016-06-23 16:47 被阅读887次
 static func cellhight (content: String) -> CGFloat {

        let rect: CGRect = content.boundingRectWithSize(
            CGSizeMake(SCREENWIDTH - 20, 0),
            options: NSStringDrawingOptions.UsesLineFragmentOrigin,
            attributes: [NSFontAttributeName:
            UIFont.systemFontOfSize(14)],
            context: nil)
    
        return rect.height + 61
    }

在返回cell 的高度的方法中直接调用
return TableViewCell.cellhight("这里面填想要自适应的文字")

相关文章

网友评论

      本文标题:Swift tableViewCell 高度自适应

      本文链接:https://www.haomeiwen.com/subject/wsxodttx.html