I\'m using Google Places API for iOS and can successfully retrieve nearby places and present the address as a string. What I\'m trying to do is extract address components such
for ( GMSAddressComponent * component in place.addressComponents) { if ( [component.type isEqual: @"locality"] ) { NSLog(@"Current city %@ ", component.name); } }