How can I convert MKMapItem
to CLPlacemark
in Swift?
My code gives me a compiler error 'MKMapItem' is not convertible to 'CLPlacemark'
:
var mapItems:[MKMapItem] = []
let mi = self.mapItems[indexPath.row];
ann.placemark = mi as CLPlacemark
In ObjC I just did ann.placemark = (CLPlacemark *)mi;
MKMapItem
is not a subclass ofCLPlacemark
. I'm not that familiar with MapKit, so maybe it was indeed possible to directly cast aMKMapItem
to aCLPlacemark
without problem.MKMapItem
does have a property calledplacemark
with typeMKPlacemark
though.MKPlacemark
is a subclass ofCLPlacemark
and can be used as such.