for (<#type *object#> in <#collection#>) {
<#statements#>
}
NSArray *array =[[NSArray alloc] initWithObjects: @"texto1", @"texto2",@"texto3",@"texto4", nil];
for (NSString *cadena in array) {
NSLog(@"%@", cadena);
}
Podeis descargarlo desde:
IOS-bucle-for-in