我正在使用NSRange
将数组100分成10并将它们存储在数组数组中。当我向下滚动到UITableView
中的最后一部分并且我使用索引UITableView
时,我收到以下错误。
*由于未捕获的异常终止应用' NSRangeException',原因:' * - [__ NSArrayI objectAtIndex:]:index 18446744073709551615 超出界限[0 .. 9]'
以下是我的代码:
var tableData : NSMutableArray!
var mutA = NSMutableArray()
var indexOfNumbers = [String]()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
tableData = [
// 100 lines of string array of different starting letter
]
let indexNumbers = "0 10 20 30 40 50 60 70 80 90 100"
indexOfNumbers = indexNumbers.componentsSeparatedByString(" ")
for (var i = 0; i < 9; i++)
{
var halfArray : NSArray!
var theRange = NSRange()
theRange.location = i*10;
theRange.length = tableData.count / 10
halfArray = tableData.subarrayWithRange(theRange)
mutA.addObject(halfArray)
}
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return indexOfNumbers.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
cell.textLabel?.text = mutA[indexPath.section][indexPath.row] as? String
return cell
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func sectionIndexTitlesForTableView(tableView: UITableView) -> [String]? {
return indexOfNumbers
}
func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int {
let temp = indexOfNumbers as NSArray
return temp.indexOfObject(title)
}
我不知道发生了什么。
答案 0 :(得分:2)
您的cellForRowAtIndexPath
方法基于mutA
变量,但您的numberOfRowsInSection
和numberOfSectionsInTableView
方法不是。
将numberOfSectionsInTableView
更改为:
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return mutA.count
}
将numberOfRowsInSection
更改为:
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return mutA[section].count
}
答案 1 :(得分:1)
SELECT
这里你在indexOfNumbers
中放了11个字符串 let indexNumbers = "0 10 20 30 40 50 60 70 80 90 100"
indexOfNumbers = indexNumbers.componentsSeparatedByString(" ")
这里你在mutA中放了9个项目。
然后你告诉UITableView有11个部分,猜猜你尝试mutA [10]时会抛出什么?