TableView 代理的常用形式
extension HomeViewController : UITableViewDataSource,UITableViewDelegate {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 3
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let hcell = tableView.dequeueReusableCell(withIdentifier: "HomeCell", for: indexPath)
hcell.selectionStyle = .none
return hcell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 300.0
}
}
网友评论