こんにちは、私はこのようなコードを得たが、Xcodeのエラーが表示さ:スウィフト(文字列:ANYOBJECTが)に変換できない[文字列:ANYOBJECT]
それは正しいようにする方法(String:AnyObject) is not convertible to [String:AnyObject]
func personDetails (dic : [String:AnyObject]) -> Array<Person> {
for personDic: [String : AnyObject] in dict { >> error in this line
let person = Person.init(person: personDic)
//rest the code
}
}
?
それはworks..thank – Voyager