I have this code
NSArray *food = [NSArray arrayWithObjects:@"Apples:",@"bacon",@"corn",@"donuts",@"elfs",@"fidge",nil];
for(int i = 0; i<6; i++){
NSLog(@"item at index %i is %@",i,[food objectAtIndex:i]);
}
and right now they are all printed to the console instantly. How can I make a variable to decrease or increase the speed they are logged? I'm new at objective-C so thanks a lot for your help! :)