Is Fast Enumeration messing with my text output?
- by Dan Ray
Here I am iterating through an array of NSDictionary objects (inside the parsed JSON response of the EXCELLENT MapQuest directions API). I want to build up an HTML string to put into a UIWebView.
My code says:
for (NSDictionary *leg in legs ) {
NSString *thisLeg = [NSString stringWithFormat:@"<br>%@ - %@", [leg…