iOS中tableviews的页眉和页脚的确切字体名称,大小和颜色是什么

时间:2018-04-04 17:11:05

标签: ios uitableview

所以我试图弄清楚tableviews的页眉和页脚的确切字体名称,大小和颜色。我希望苹果为此提供一些默认颜色,字体,大小等。我已经搞砸了一下,字体大小为12,名字是Helvitica Neue,但颜色更难以找到。有什么建议吗?

1 个答案:

答案 0 :(得分:2)

您可以实施willDisplayFooterView / willDisplayHeaderView并检查标签。

    override func tableView(_ tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) {
        let h = view as! UITableViewHeaderFooterView
        print(h.textLabel?.font) //the font
        print(h.textLabel?.textColor) //the color
    }

打印

UICTFont:0x7fc5035114e0> font-family:“。SFFITExt-Semibold”; font-weight:bold; font-style:normal; font-size:17.00pt

UIExtendedSRGBColorSpace r:0.137255 g:0.137255 b:0.137255 a:1

即UIColor.darkText