我正在编写应用程序只是为了娱乐和改进。
我的问题如下:
在我的应用程序的ViewController中,我有3个tableViews共享dataSource和delegate(viewController它自己)。我已为每个Outlets完成了3个Outlets,这样我就可以通过对象引用comparaison(numberOfRowsInSection
)确定cellForRowAtIndexPath
和tableView === outletTableView
中的返回值。
每次返回正确的值(通过一些调用print来检查),但设备似乎使用一个tableView中的numberOfRows作为3个tableViews!
我的第一个有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?
答案 0 :(得分:0)
您的代码似乎有问题。当数据源相同时,3个表不可能具有不同的numberOfRows。您显然正在更改传递给tableView的数组。
检查最初加载视图时返回的numberOfRows。每次在任何一个表中进行更改时,都需要反映&#34;数据源&#34;数组而不是本地数组。你似乎在使用一个中间数组,因为你在显示numberOfRows时会有不一致。