Swift 5.0 扩展

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
    }
}

你可能感兴趣的:(Swift 5.0 扩展)