私は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 types。を使用することです。currentQuestionDict
が実際に何であるかがわかっている場合は、そのタイプとして入力してください。 、1つにして、[NSObject:AnyObject]
(および可能であればより具体的に)。これにはいくつかの方法があります。 1つの方法は、変数を作成するときにキャストすることです。
let currentQuestionDict =
myQuestionsArray!.objectAtIndex(count) as! [NSObject:AnyObject]
簡単に言えば、NSArrayとNSDictionaryを使用することを避けることができる場合は使用しないでください(通常は避けることができます)。 Objective-Cから受け取った場合は、Swiftで使用できるように、実際の名前を入力してください。
["Key"]がこのエラーの原因です。新しいSwift update、値を取得するにはobjectForKey
を使用する必要があります。コードを;に変更するだけです。
if let button1Title = currentQuestionDict.objectForKey("choice1") as? String {
button1.setTitle("\(button1Title)", forState: UIControlState.Normal)
}
これは、エラーを解決するために使用したコードです。
let cell:AddFriendTableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! AddFriendTableViewCell
let itemSelection = items[indexPath.section] as! [AnyObject] //'items' is an array of NSMutableArrays, one array for each section
cell.label.text = itemSelection[indexPath.row] as? String
お役に立てれば!