我使用storyboard创建了一个包含两个部分的tableview。 我希望能够使用数组数组为每个部分显示不同的项目,并能够单独删除每一行。 我尝试了以下但应用程序崩溃
import Foundation
import UIKit
var letters: [String] = []
class NotificationsViewController: UITableViewController {
var data = [ letters, ["1","2","3"]]
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.editing = true
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//return letters.count
return data[section].count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: UITableViewCell = UITableViewCell(style: .Subtitle, reuseIdentifier: "tableCell")
// cell.textLabel?.text = letters[indexPath.row]
cell.textLabel?.text = data[indexPath.section][indexPath.row]
return cell
}
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
// // Delete the row from the data source
// letters.removeAtIndex(indexPath.row)
//
// tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
data[indexPath.section].removeAtIndex(indexPath.row)
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
}
}
}
这是我的tableViewController: screeshot
错误:
2016-05-10 17:01:48.278 App [70893:6874230] *由于未捕获的异常'NSRangeException'而终止应用程序,原因:'* - [__ NSArrayI objectAtIndex:]:index 1超出界限[0 .. 0]' ***首先抛出调用堆栈:
当我有一个数组(例如字母数组)时,该应用程序正常工作,它将在两个部分中显示相同的数据
答案 0 :(得分:0)
您可以尝试删除字母和替换数据,如下所示:
var data = [["1","2","3"]]
如果你想要多个这样的部分:
var data = [["1","2","3"], ["4","5"]]
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return data.count
}
override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 20
}
答案 1 :(得分:0)
我发现了我的问题。 这是因为我在tableview中的每个部分都有一行。一旦我添加了更多行,该应用程序就可以运行并且不会崩溃。