Hi there I am new to Swift, I am trying to save Longitude and Latitude and place name from map\'s coordinate object to an Multidimensional array i.e:
Can anyone plea
Without more information, this is what I can offer.
var pinArray = [[AnyObject]]() for location in mapLocations { var innerArray = [location["latitude"], location["longitude"], location["place"]] pinArray.append(innerArray) }