Xibで設定したViewのサイズ変更が反映されな状況です。
オートレイアウトでサイズを変えようとしています。
sizeの設定はFreeformにしています。
考えられることがあればご教授ください
すみません。追記です。
ヘッダーの設定メソッドにframe設定もしてみましたが
こちらも反映されませんでした。
ただし背景色の設定は反映されます。
// セクションのヘッダーに表示する設定を返す func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { // インスタンスのロード let header = SectionHeaderView.instance() header.setTitle(title: viewModel.Title(section: section), title2: viewModel.Title2(section: section)) // フレームの大きさを設定 header.frame = CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: 300) print(header.frame) // 画像の更新 header.setImage(isOpen: viewModel.isOpen(in: section)) // 背景設定 RGBで設定 header.backgroundColor = UIColor(red: 255/255, green: 255/255, blue: 240/255, alpha: 1.0) return header }
回答1件
あなたの回答
tips
プレビュー