func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
let order = orders[indexPath.row]
guard orders.count > indexPath.row else {
print("Index out of range")
return
}
let storyboard = UIStoryboard(name: "Main", bundle: nil)
var viewController = storyboard.instantiateViewController(withIdentifier: "viewControllerIdentifer") as! OrderDetailsController
viewController.passedValue = order.id
self.present(viewController, animated: true , completion: nil)
}
每当我关闭我的应用程序(转到后台)并重新打开它时,它就会崩溃。
致命错误:索引超出范围
2017-06-18 18 18:09:33.726310 JaeeDriver[1378:563304]致命错误:索引超出范围
我不知道为什么会这样。需要注意的是,在
ViewDidLoud
中,我有这行代码来更新表 var timer = Timer.scheduledTimer(timeInterval: 4, target: self, selector: "GetOrders", userInfo: nil, repeats: true)
每当更新发生时,我在
GetOrders
函数的开头都有这段代码func GetOrders (){
orders = []
删除旧数据并替换为新数据
更新
在
GetOrder
结束时 }
DispatchQueue.main.async {
self.tableview.reloadData()
}
节数和行数:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return orders.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "OrderCell", for: indexPath) as! OrderCell
let entry = orders[indexPath.row]
cell.DateLab.text = entry.date
cell.shopNameLab.text = entry.shopname
cell.shopAddLab.text = entry.shopaddress
cell.nameClientLab.text = entry.clientName
cell.clientAddLab.text = entry.ClientAddress
cell.costLab.text = entry.Cost
cell.perefTimeLab.text = entry.PerferTime
cell.Shopimage.hnk_setImage(from: URL(string: entry.Logo))
return cell
}
如有任何帮助,我们将不胜感激。
最佳答案
我想你应该再加一个数组,比如说temperder。使用temporder获取订单的fresh list change数组数据并重新加载后,在此添加fresh list。您正在清除订单数据并从表视图中选择列表项。但当时新的数据并没有按顺序数组添加。
关于ios - Swift:致命错误:索引超出范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44616460/