Query a GeoPoint from Parse and add it to MapKit as MKAnnotation?
I am trying to query an array of PFGeoPoints stored on the Parse backend. I have a PFObject in Parse called "Post", with data assigned to it such as "location", "title", "message", etc. everything is being sent to Parse upon posting from my app and is properly stored in the backend. I am having issues retrieving properties of the "Post" PFObject from Parse and storing them into an MKAnnotation on the map. Here is my MapViewViewController: import UIKit import Parse import CoreLocation import MapKit class MapViewViewController: UIViewController, MKMapViewDelegate, CLLocationManagerDelegate {