-2
私は私がで名前を表示するには、このラインを使用していますcellForRowAtIndexPathで配列dicitionaryで配列から値を迅速に取得する方法は?
if let dict = response.result.value {
print(response)
let petListArray = dict as! NSDictionary
self.petListArray = petListArray["MyPets"] as! [NSMutableArray]}
に値を取得するためのコードの下に使用していますUITableview
{
MyPets = (
{
breed = "";
breedvaccinationrecord = "";
"city_registration" = "";
"date_of_birth" = "";
"emergency_contacts" = "";
gender = m;
"pet_id" = 475;
"pet_name" = "IOS PET";
petinfo = "http://name/pet_images/";
"prop_name" = "";
"qr_tag" = 90909090;
species = Canine;
"vaccination_records" = "";
vaccinationrecord = "http://Name/vaccination_records/";
"vet_info" = "";
}
);
}
を示すために私の配列に以下のJSONを取得したいですテーブルセル
cell?.petName.text = self.petListArray[indexPath.row].valueForKey("pet_name") as? String
それは
のようにクラッシュさでUILabel 10fatal error: NSArray element failed to match the Swift Array Element type
私は2迅速に私を助けてください、すべての事前
ランダムキーの周りにクォートがないのはなぜですか? –
それはサーバーからの応答であり、それはアンドロイドでうまくいきます...私はあまり知りません –