首先需要继承方法:继承UITableViewController 中的两个方法(另一个返回cell的方法是tableview中必须需要的方法)
1,func numberOfSectionsInTableView(tableView: UITableView) -> Int //此方法中编写tableview中分多少个组
2,func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int //此方法返回相应组有多少行
然后就会将数据源中的数据按照上诉的结构进行分组
1,CGFloat
//此方法返回的为一个cgfloat 是headerview的高度,如果不设置高度的话,默认的高度会使得section=0 的headerview被导航栏遮住
2,func tableView(tableView: UITableView,viewForHeaderInSection section: Int) -> UIView
原文链接:https://www.f2er.com/swift/327202.html