美文网首页
swift 值绑定(以tableView.CellforRow

swift 值绑定(以tableView.CellforRow

作者: MrLSX | 来源:发表于2019-08-02 16:43 被阅读0次
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        //元组(section,row)
        switch (indexPath.section,indexPath.row) {
        case (1,0):
            let cell = tableView.dequeueReusableCell(withIdentifier: "tableViewCell4", for: indexPath) as! tableViewCell4
            return cell
        //值绑定(section == 1,row >= 1(row==0在上一个case已经走了)) x = row
        case (1,let x):
            let cell = tableView.dequeueReusableCell(withIdentifier: "tableViewCell5", for: indexPath) as! tableViewCell5
            return cell
        default:
            let cell = tableView.dequeueReusableCell(withIdentifier: "tableViewCell5", for: indexPath) as! tableViewCell5
            return cell
        }
    }

    相关文章

      网友评论

          本文标题:swift 值绑定(以tableView.CellforRow

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