web-dev-qa-db-ja.com

Swiftでの添字のあいまいな使用

私は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)"
}
26
kriskendall99

問題は、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で使用できるように、実際の名前を入力してください。

35
matt

["Key"]がこのエラーの原因です。新しいSwift update、値を取得するにはobjectForKeyを使用する必要があります。コードを;に変更するだけです。

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

これは、エラーを解決するために使用したコードです。

    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

お役に立てれば!

2
Baylor Mitchell