我有以下UIViewController
,其中包含UITableView
:
class Home : UIViewController {
override func loadView() {
self.view = HomeView()
}
override func viewDidLoad() {
super.viewDidLoad()
}
}
此视图:
class HomeView: UIView {
let tableView = UITableView()
let delegate = TVDelegate()
let dataSource = TVDataSource()
override init(frame: CGRect) {
super.init(frame: frame)
createSubviews()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
createSubviews()
}
func createSubviews() {
setupTableView()
setupConstraints()
}
func setupTableView() {
tableView.estimatedRowHeight = 500
tableView.tableFooterView = UIView()
tableView.delegate = delegate
tableView.dataSource = dataSource
tableView.backgroundColor = UIColor.purple
tableView.register(TVCell.self, forCellReuseIdentifier: "tableViewCell")
}
func setupConstraints() {
tableView.prepareView()
self.addFullSizeView(item: tableView)
}
}
这是我的代表:
class TVDelegate : NSObject, UITableViewDelegate {
func numberOfSections(in tableView: UITableView) -> Int {
return 5
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 500
}
}
和我的数据源:
class TVDataSource : NSObject, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let cell = tableView.dequeueReusableCell(withIdentifier: "tableViewCell", for: indexPath) as? TVCell
{
return cell
}
return UITableViewCell()
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Your Favourites"
}
}
但是,我没有看到5个部分,而是在运行我的应用程序时只看到一个标题为1个部分。
答案 0 :(得分:2)
php-app
是dataSource方法,应该在这里
numberOfSections
发生的事情是tableView接受默认数字1,该数字在class TVDataSource : NSObject, UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 5
}
}
类中未实现,因为该方法是可选的