需要动态显示表视图中的主标题和子标题

时间:2016-07-21 21:42:20

标签: ios objective-c

我需要用两个标题显示tableview。

Screenshot for reference

需要使用两个标头动态加载这些数据。

1 个答案:

答案 0 :(得分:-1)

使用

 override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        switch section {
        case 0:
            return "Bat-and-ball"
        case 1:
            return "Hockey"
        default:
            return "other header"
        }
    }