美文网首页
Swift:关于XIB,cell自适应高度,区分不同的cell自

Swift:关于XIB,cell自适应高度,区分不同的cell自

作者: 斯文_7 | 来源:发表于2016-05-24 18:28 被阅读232次
    override func viewDidLoad() {
            
            super.viewDidLoad()
            
            tableView.estimatedRowHeight = 100; //先估计一个高度      
        }
    
    
    
        func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
            switch indexPath.row {
            case 0:
                return UITableViewAutomaticDimension
            default:
                return 100
            }
        }
    
    

    相关文章

      网友评论

          本文标题:Swift:关于XIB,cell自适应高度,区分不同的cell自

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