0

我在两个部分中有带有静态单元格的 UIViewController,我想用按钮更改一行的高度。我唯一的想法是做点什么

 override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    if indexPath.section == 0 && indexPath.row == 0 {
    return 88
    }
    else {
    return 44
    }
}

但我不认为我可以将它分配给 UIButton。

4

1 回答 1

1

为 staticCellHeight 创建一个变量并返回这个变量而不是 88

为 UIButton 创建一个动作

改变动作中变量的值

调用 tableview.reloadData()

于 2015-01-18T12:50:07.793 回答