I have a feeling that my problem here is really with blocking, but maybe it\'s something else too. I am trying to forward geocode an address and place the coordinates into an ar
__block NSMutableArray *coordinates = [[NSMutableArray alloc] initWithCapacity:0];
The problem is here; just replace the above code with:
NSMutableArray *coordinates = [[NSMutableArray alloc] init];