我在两个部分中有带有静态单元格的 UIViewController,我想用按钮更改一行的高度。我唯一的想法是做点什么
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.section == 0 && indexPath.row == 0 {
return 88
}
else {
return 44
}
}
但我不认为我可以将它分配给 UIButton。