我目前正在使用<代码> 可调用的电文代码>处理麻烦。
我要对这一新特点表示枪声,因此,我对这个网络进行了许多辅导,但似乎没有人回答我的问题。
我目前的看法 主计长有<代码>可调取的,有3个不同的物体(各有不同类型),但<可调用的电文/代码>则严格分类。
同:dataSource = UITableViewDiffableDataSource <sectionType, 项目Type>
All my sections are fed with something like
func numberOfSections(in tableView: UITableView) -> Int {
return 3
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0 {
return bigObject.ObjectsOfType1.count
} else if section == 1 {
return bigObject.ObjectsOfType2.count
} else {
return bigObject.ObjectsOfType3.count
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier) as! CustomTableViewCell
if indexPath.section == 0 {
cell.buildWithFirstObject(obj: bigObject.ObjectsOfType1[indexPath.row])
} else if indexPath.section == 1 {
cell.buildWithFirstObject(obj: bigObject.ObjectsOfType2[indexPath.row])
} else {
cell.buildWithFirstObject(obj: bigObject.ObjecstOfType3[indexPath.row])
}
}
在我的案件中是否有使用可分散数据的方法?
任何帮助都值得赞赏! 感谢您阅读我: