gpt4 book ai didi

swift - 3 个具有公共(public)数据源和委托(delegate)的 TableView - 行数错误

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

我编写应用程序只是为了乐趣和改进。

我的问题如下:

在我的应用程序的 ViewController 中,我有 3 个 tableView 共享数据源和委托(delegate)(viewController 本身)。我为每个 socket 做了 3 个 socket ,这样我就可以通过对象引用比较来识别 numberOfRowsInSectioncellForRowAtIndexPath 中返回的值 (tableView === outletTableView)。每次都会返回正确的值(通过一些打印调用进行检查),但设备似乎将一个 tableView 中的 numberOfRows 用于 3 个 tableView !我的第一个有 13 行,第二个有 21 行,第三个只有 1 行。当加载第二个 tableView 的第 14 行时,应用程序崩溃并出现以下错误:

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'request for rect at invalid index path (<NSIndexPath: 0xc000000001a00016> {length = 2, path = 0 - 13})'

我检查了很多主题,但没有找到任何解决方案......

谢谢

<小时/>

这是我的代码:

@IBOutlet weak var mainSkillTableHeight: NSLayoutConstraint!
@IBOutlet weak var secondarySkillTableHeight: NSLayoutConstraint!
@IBOutlet weak var exoticSkillTableHeight: NSLayoutConstraint!

[...]

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if (tableView === mainSkillsTable) {
print("CM \(character.main_skills.count + 1)")
return character.main_skills.count + 1
}
else if (tableView === secondarySkillsTable) {
print("CS \(character.secondary_skills.count + 1)")
return character.secondary_skills.count + 1
}
else if (tableView === exoticSkillsTable) {
print("CE \(character.exotic_skills.count + 1)")
return character.exotic_skills.count + 1
}
return 0
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell1: CreationMainSkillCell?
var cell2: CreationSecondarySkillCell?
var cell3: CreationExoticSkillCell?
if (tableView === mainSkillsTable) {
if indexPath.row == 0 {
return mainSkillsTable.dequeueReusableCellWithIdentifier("mainHeader", forIndexPath: indexPath) as! HeaderMainSkillCell
}
cell1 = mainSkillsTable.dequeueReusableCellWithIdentifier("mainDataC", forIndexPath: indexPath) as? CreationMainSkillCell
cell1!.character = character
cell1!.row = indexPath.row
return cell1!
}
else if (tableView === secondarySkillsTable) {
if indexPath.row == 0 {
return mainSkillsTable.dequeueReusableCellWithIdentifier("secondHeader", forIndexPath: indexPath) as! HeaderSecondarySkillCell
}
cell2 = mainSkillsTable.dequeueReusableCellWithIdentifier("secondDataC", forIndexPath: indexPath) as? CreationSecondarySkillCell
cell2!.character = character
cell2!.row = indexPath.row
return cell2!
}
else if (tableView === exoticSkillsTable) {
if indexPath.row == 0 {
return mainSkillsTable.dequeueReusableCellWithIdentifier("exoticHeader", forIndexPath: indexPath) as! HeaderExoticSkillCell
}
cell3 = mainSkillsTable.dequeueReusableCellWithIdentifier("exoticDataC", forIndexPath: indexPath) as? CreationExoticSkillCell
cell3!.character = character
cell3!.row = indexPath.row
return cell3!
}

return UITableViewCell()
}
<小时/>

numberOfRows 没有链接到特定的 tableView 吗?

最佳答案

你的代码似乎有问题。当数据源相同时,3 个表不可能具有不同的 numberOfRows。您显然正在更改传递给 tableView 的数组。

检查最初加载 View 时返回的 numberOfRows。每次在任何一张表中进行更改时,您都需要反射(reflect)“数据源”数组而不是本地数组。您似乎使用了中间数组,因此显示的 numberOfRows 不一致。

关于swift - 3 个具有公共(public)数据源和委托(delegate)的 TableView - 行数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34302990/

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