当前位置 : 主页 > 手机开发 > 其它 >

如何在titleForHeaderInSection中设置颜色? -迅速

来源:互联网 收集:自由互联 发布时间:2021-06-11
我的tableview中有两个部分,我想为tableView的不同sectionHeaders设置不同的颜色,我该怎么做? func tableView(tableView: UITableView!, titleForHeaderInSection section: Int) - String! { if (section == 0) { return "Item1"
我的tableview中有两个部分,我想为tableView的不同sectionHeaders设置不同的颜色,我该怎么做?

func tableView(tableView: UITableView!, titleForHeaderInSection section: Int) -> String! {
    if (section == 0) {
        return "Item1"
    }
    if (section == 1) {
        return "Item2"
    }
}
与Objective-C中的方式相同:提供带标签的自定义标题并更改其文本颜色

override func tableView(tableView: UITableView!, viewForHeaderInSection section: Int) -> UIView! {


    var label : UILabel = UILabel()
    if(section == 0){
        label.text = "Item1"
    } else if (section == 1){
        label.textColor = UIColor.orangeColor()
        label.text = "Item2"
    }
    return label
}
网友评论