gpt4 book ai didi

ios - 可选类型 'NSIndexPath?' 的值未展开;您是要使用 '!' 还是 '?' ?

转载 作者:可可西里 更新时间:2023-11-01 02:10:31 26 4
gpt4 key购买 nike

我的代码有这个问题,我认为问题是在我将语法更改为新的 swift 版本后出现的。

import UIKit

class FirstTableViewController: UITableViewController {

var FirstTableArray = [String]()
var passThisArray = [String]()

override func viewDidLoad() {
super.viewDidLoad()
// This array will display on your tableviewcell.
FirstTableArray = [lib1]

//You can pass element of this array
passThisArray = ["1. Fi "]

}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return FirstTableArray.count
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {


let Cell = self.tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

Cell.textLabel?.text = passThisArray[(indexPath as NSIndexPath).row]

return Cell

}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if(segue.identifier == "detailView") {
let vc = segue.destination as! ViewController

//Get the Index of selected Cell
let indexPath : IndexPath = self.tableView.indexPathForSelectedRow!

//assign string to next view controller instance from selected cell.
vc.FirstString = FirstTableArray[(indexPath as NSIndexPath).row]
}
}
}

在这一行它给了我 2 个错误:

let indexPath : IndexPath = self.tableView.indexPathForSelectedRow!
  1. Value of optional type 'NSIndexPath?' not unwrapped; did you mean to use '!' or '?'?

  2. Invalid use of '()' to call a value of non-function type 'NSIndexPath?'

谢谢。

最佳答案

问题在于无法保证用户选择了一行,因此您对 indexPathForSelectedRow 的调用是可选的(它可能有也可能没有值)。

改进此方法的一种方法是使用 guard 语句安全地解包此方法中的两个可选值。如果其中一个未设置 (nil),该方法将安全退出而不会导致您的应用崩溃。

if let ... 方法上使用 guard 的一个好处是您可以避免厄运金字塔。使用您的示例,它需要三个缩进来运行您分配字符串的最终命令,从而使您的代码更难阅读。守卫声明明确表示“如果此值失败,则防止崩溃”。

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if(segue.identifier == "detailView") {
guard let vc = segue.destination as? ViewController else {
return
}

//Get the Index of selected Cell
guard let indexPath = self.tableView.indexPathForSelectedRow else {
return
}

//assign string to next view controller instance from selected cell.
vc.FirstString = FirstTableArray[(indexPath as NSIndexPath).row]
}
}

此外,还有两个次要的代码风格思考:

  • 当你分配给 indexPath 时,你不需要使用 : NSIndexPath。编译器可以为你推断类型
  • 当声明变量时,iOS 惯例是使用驼峰式命名法,因此虽然您的 indexPath 变量很好,但您应该将 FirstString 更改为 firstString

关于ios - 可选类型 'NSIndexPath?' 的值未展开;您是要使用 '!' 还是 '?' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41088538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com