1
グループ化されたテーブルビューがあり、セクションヘッダーのフォントスタイルを変更する必要があります。私は試しました:グループ化されたuitableviewのヘッダーフォントを変更するには?
func tableView(tableView: UITableView, willDisplayHeaderView view: UIView,
forSection section: Int) {
let header = view as! UITableViewHeaderFooterView
header.textLabel?.font = UIFont(name: "Futura", size: 11)
}
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let view = UITableViewHeaderFooterView.init(frame: CGRect.init(x: 0, y: 0, width: tableView.bounds.width, height: tableView.sectionHeaderHeight))
view.contentView.layoutMargins = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 20)
view.contentView.backgroundColor = UIColor.init(red: 235/255, green: 235/255, blue: 235/255, alpha: 0)
let label = UILabel.init(frame: CGRect.init(x: 20, y: 0, width: tableView.bounds.width, height: tableView.sectionHeaderHeight))
label.font = UIFont(name: "Futura", size: 11)
label.textColor = UIColor.blue
view.addSubview(label)
return view
}
私は一度に上記のコードを試してみましたが、何も動作していないようです。助けてください。ありがとう!
例外が発生するか、デフォルトのUIFontをレンダリングするだけですか? – Emptyless
こんにちは@Emptyless、それはデフォルトのUIFontをレンダリングします。 – Number45