這裏我得到cityName1
與城市名稱像Piscataway,Iselin,Broklyn等取自tgpList1
數組,我需要把值放入一個數組調用item5
。加載一個數組的元素值到另一個數組Xcode Objective-C
有上述迭代獲取的133條記錄。以下代碼僅存儲最後一條記錄的cityName1
,而不是整個循環內的城市名稱列表。
我嘗試了很多方法,但我失去了一些東西。
tgpList1
是一個數組。 tgpDAO
是一個NSObject兩個物體NSString *airportCode
和NSString *cityName
NSArray *item5 = [[NSArray alloc]init];
for (int currentIndex=0; currentIndex<[tgpList1 count]; currentIndex++)
{
tgpDAO *tgpTable = (tgpDAO *)[self.tgpList1 objectAtIndex:currentIndex];
NSLog(@"The array values are %@",tgpList1);
NSString *cityName1 = tgpTable.cityName;
item5 =[NSArray arrayWithObjects:cityName1, nil];
}
格式化你的問題以及鼓勵更好,更快的答案。我這次編輯過你的問題,但請考慮下次格式化問題。 –
嗨,詹姆斯,感謝你的提示,將會遵循它。 – user1583893