gpt4 book ai didi

arrays - 如何在 Swift 中查询一个 UITableViewController 中的两个自定义单元格?

转载 作者:行者123 更新时间:2023-11-30 10:11:10 24 4
gpt4 key购买 nike

我希望能够在一个表格 View 中看到两个不同的单元格。这没有被分成几个部分。那么你会把它作为一个部分还是什么?

最佳答案

是的,您可以这样做,例如:

switch indexPath.row {
case 0:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell1", forIndexPath: indexPath) as! FirstTableViewCell
case 1:

let cell = tableView.dequeueReusableCellWithIdentifier("Cell2", forIndexPath: indexPath) as! SecondTableViewCell
default:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell3", forIndexPath: indexPath) as! ThirdTableViewCell
}

关于arrays - 如何在 Swift 中查询一个 UITableViewController 中的两个自定义单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32981629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com