I'm currently working with fast enumeration variables, something that seems really simple I can't make it work.
I have this code, that it work
for (NSDictionary *story in stories){
NSLog(@"%@", [story objectForKey:@"title"]);
}
This actually prints every single key stored in tittle. Now, I try to do this
for (NSDictionary *story in stories){
NSLog(@"%@", [story objectForKey:@"title"]);
NSString *titles = [story objectForKey:@"title"];
[self.bigText setText:titles];
}
And it just print one. Why?