UITableView のフッターとして使用しているカスタム UITableViewCell があります。
func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let cell = tableView.dequeueReusableCellWithIdentifier("footerCommentCell") as! FooterCommentTableViewCell
cell.footerIndex = section
cell.delegate = self
return cell
}
このフッターには
http://joxi.ru/DrloGbpC4Eb3vAのような自動レイアウトがあり
ます 1 - ビュー 1 2 - ビュー 2 3 - ビュー 2 高さ制限 ( view2Height
)
初期段階view2Height
では 0 であり、一部のアクションでは、この制約定数を別の値 (50 など) に変更し、ヘッダーを に変更したいと考えています。
これを実装する方法はありますか?