我有一個名爲'objects'的array對象,它的arrayCount = 1000。它需要大約10秒來遍歷這個數組。有沒有人有更快的方法來迭代這個數組?用對象和鍵遍歷NSArray的最快方法
for (int i = 0; i <= arrayCount; i++) {
event.latitude = [[[objects valueForKey:@"CLatitude"] objectAtIndex:i] floatValue];
event.longitude = [[[objects valueForKey:@"CLongitude"] objectAtIndex:i] floatValue];
}