ios - Query a GeoPoint from Parse and add it to MapKit as MKAnnotation? -
i trying query array of pfgeopoints stored on parse backend. have pfobject in parse called "post", data assigned such "location", "title", "message", etc. everything being sent parse upon posting app , stored in backend. having issues retrieving properties of "post" pfobject parse , storing them mkannotation on map. here mapviewviewcontroller: import uikit import parse import corelocation import mapkit class mapviewviewcontroller: uiviewcontroller, mkmapviewdelegate, cllocationmanagerdelegate { @iboutlet var mapview: mkmapview! var mapviewlocationmanager:cllocationmanager! = cllocationmanager() var currentloc: pfgeopoint! = pfgeopoint() var posttitle: string! var postbody: string! override func viewdidload() { super.viewdidload() mapview.showsuserlocation = true mapview.delegate = self mapviewlocationmanager.delegate = self mapviewlocationmanager.startupdatinglocation() mapview.setusertrackingmode...