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
}
}