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

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自适应)