Swiftで、"Type of expression is ambiguous without more context"のエラー

エラーになったプログラムは以下(抜粋)

swifter.getUserFollowersIDs(for: .screenName("xxxxx"), success: { json, prev, next in

for (i, subJson) in json.array? {

print(subJson)

}

型がわかんない、と言われているので、以下のように型を明確にしてやることで解決。

let jsonArray:[JSON] = json.array!

for (subJson) in jsonArray {

print(subJson)

}

Follow me!

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です