struct RecipeStruct: Codable { let result: [User] struct User: Codable { let foodImageUrl :String let recipeTitle :String }}
のfoodImageUrlとrecipeTitleをtableviewに表示させたくて
cell.imageView?.image = article.result.foodImageUrl as! UIImage cell.detailTextLabel?.text = article.result.recipeTitle
と書いたら
Value of type '[RecipeStruct.User]' has no member 'foodImageUrl' Value of type '[RecipeStruct.User]' has no member 'recipeTitle'
というエラーが出て困っています。
どうすれば取り出すことができるのでしょうか?
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/24 14:46