gpt4 book ai didi

arrays - Swift 中下标的模糊使用

转载 作者:IT王子 更新时间:2023-10-29 05:07:24 25 4
gpt4 key购买 nike

我的 Swift 代码中不断出现“下标使用不明确”的错误。我不知道是什么导致了这个错误。它只是随机弹出。这是我的代码:

if let path = NSBundle.mainBundle().pathForResource("MusicQuestions", ofType: "plist") {
myQuestionsArray = NSArray(contentsOfFile: path)
}

var count:Int = 1
let currentQuestionDict = myQuestionsArray!.objectAtIndex(count)

if let button1Title = currentQuestionDict["choice1"] as? String {
button1.setTitle("\(button1Title)", forState: UIControlState.Normal)
}

if let button2Title = currentQuestionDict["choice2"] as? String {
button2.setTitle("\(button2Title)", forState: UIControlState.Normal)
}

if let button3Title = currentQuestionDict["choice3"] as? String {
button3.setTitle("\(button3Title)", forState: UIControlState.Normal)
}
if let button4Title = currentQuestionDict["choice4"] as? String {
button4.setTitle("\(button4Title)", forState: UIControlState.Normal)
}

if let question = currentQuestionDict["question"] as? String!{
questionLabel.text = "\(question)"
}

最佳答案

问题是你正在使用 NSArray:

myQuestionsArray = NSArray(contentsOfFile: path)

这意味着 myQuestionArray 是一个 NSArray。但是 NSArray 没有关于其元素的类型信息。因此,当您到达这一行时:

let currentQuestionDict = myQuestionsArray!.objectAtIndex(count)

...Swift 没有类型信息,必须使 currentQuestionDict 成为 AnyObject。但是您不能下标 AnyObject,因此像 currentQuestionDict["choice1"] 这样的表达式无法编译。

解决方案是使用 Swift 类型。如果您知道 currentQuestionDict 的真正含义,请按该类型键入它。至少,既然你似乎相信它是一本字典,那就把它变成一本吧;将其键入为 [NSObject:AnyObject](如果可能,更具体)。您可以通过多种方式做到这一点;一种方法是在创建变量时进行强制转换:

let currentQuestionDict = 
myQuestionsArray!.objectAtIndex(count) as! [NSObject:AnyObject]

简而言之,如果可以避免的话,永远不要使用 NSArray 和 NSDictionary(通常可以避免)。如果您从 Objective-C 收到一个,请按实际情况键入它,以便 Swift 可以使用它。

关于arrays - Swift 中下标的模糊使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33642059/

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