美文网首页
Swift static Cell 和Dynamic Cell混

Swift static Cell 和Dynamic Cell混

作者: Distance先生 | 来源:发表于2017-06-09 20:46 被阅读0次

静态单元格内容不需要修改
动态单元格内容需要修改

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        if indexPath.section == 2 {
            let cell = tableView.dequeueReusableCell(withIdentifier: "managerCell")as! ManagerCell
            
            cell.backgroundColor = UIColor.clear
            cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, screen_W)
            cell.selectionStyle = .none
            return cell
        }
        return super.tableView(tableView, cellForRowAt: indexPath)
    }

相关文章

网友评论

      本文标题:Swift static Cell 和Dynamic Cell混

      本文链接:https://www.haomeiwen.com/subject/ihwfqxtx.html