有没有办法用uibutton改变静态单元格高度?
Is there a way to change static cell height with uibutton?
我的 UIViewController 有两个部分的静态单元格,我想用按钮更改一行的高度。我唯一的想法是用
做点什么
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.section == 0 && indexPath.row == 0 {
return 88
}
else {
return 44
}
}
但我不认为我可以将它分配给 UIButton。
为 staticCellHeight 创建一个变量
return 这个变量而不是 88
为 UIButton 创建一个动作
更改动作中变量的值
呼叫tableview.reloadData()
我的 UIViewController 有两个部分的静态单元格,我想用按钮更改一行的高度。我唯一的想法是用
做点什么 override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.section == 0 && indexPath.row == 0 {
return 88
}
else {
return 44
}
}
但我不认为我可以将它分配给 UIButton。
为 staticCellHeight 创建一个变量 return 这个变量而不是 88
为 UIButton 创建一个动作
更改动作中变量的值
呼叫tableview.reloadData()