(Swift) 致命错误:索引超出范围
Posted
技术标签:
【中文标题】(Swift) 致命错误:索引超出范围【英文标题】:(Swift) fatal error: Index out of range 【发布时间】:2017-06-24 00:49:22 【问题描述】:我有三个数组。一个显示 tableView 上每个部分的标题,一个显示标题,一个显示每个单元格的链接。当我运行这段代码时,我得到:
fatal error: Index out of range
Here is what happens after it runs
我的代码是:
import UIKit
class FirstViewController: UIViewController, UITableViewDataSource, UITableViewDelegate
var headers = ["Bein Sports", "Sky Sports", "Alkass", "Other"]
var channels = [["Bein Sports 1","Bein Sports 2","Bein Sports 3","Bein Sports 4","Bein Sports 5","Bein Sports 6","Bein Sports 7","Bein Sports 8","Bein Sports 9","Bein Sports 10","Bein Sports News"],
["Sky Sports 1","Sky Sports 2","Sky Sports 3","Sky Sports 4","Sky Sports 5"],
["Alkass One", "Alkass Two", "Alkass Three", "Alkass Four", "Alkass Five"],
["BT Sports 1", "BT Sports 2", "Real Madrid TV", "Real Madrid TV 2"]]
var links = [["https://www.google.ca","https://www.facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
["https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
["https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
["http://twitter.com","http://facebook.com","http://www.google.com","http://www.instagram.com"]]
var myIndex = 0
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
return channels[section].count
func numberOfSections(in tableView: UITableView) -> Int
return channels.count //Rows
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
return headers[section] //Sections
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = channels[indexPath.section][indexPath.row] //TextLabel
return cell
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
myIndex = [indexPath.section][indexPath.row]
performSegue(withIdentifier: "segue", sender: self)
在调试器中,这是突出显示的行:
myIndex = [indexPath.section][indexPath.row]
【问题讨论】:
IndexPath
(节、行)的值是多少?
这是同样的问题in your last question。您是否查看了那里的答案以及您所做的更改?
@rmaddy 这是正确的问题。
但是导致问题的行与您询问的关于 in your previous question 的行相同。你得到了关于修复那行代码的答案。那么,你为什么要发布一个新问题并使用同样糟糕的代码行?
@rmaddy 我的代码中有错误,这些错误已经得到纠正,答案试图解决这两个问题。我试图按照答案所说的去做,但结果一团糟,我不知道是什么。
【参考方案1】:
您可以将 myIndex 存储为 IndexPath 并使用 myIndex 来获取 indexPath 行和部分,就像这样
var myIndex : IndexPath = IndexPath()
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
myIndex = NSIndexPath(row: indexPath.section, section: indexPath.row) as IndexPath
performSegue(withIdentifier: "segue", sender: self)
【讨论】:
不要在 Swift 中使用NSIndexPath
。
@rmaddy 为什么会这样?
@KarrarAl-Mimar 因为你使用IndexPath
。为什么创建NSIndexPath
只是为了将其转换为IndexPath
?那是没有意义的。是斯威夫特。使用 Swift API,而不是 Objective-C API。以上是关于(Swift) 致命错误:索引超出范围的主要内容,如果未能解决你的问题,请参考以下文章
Swift TableView ImageView + Label = 致命错误:索引超出范围