我剛剛升級ray wenderlich mapkit教程到MKPlacemark的xcode 7錯誤。我仍然只是新的編碼,我不能100%確定從哪裏開始如何解決這個錯誤。我搜索,但知道利用。升級ray wenderlich mapkit教程到xcode 7錯誤mkplacemark
感謝您的任何幫助。非常感謝。
http://www.raywenderlich.com/90971/introduction-mapkit-swift-tutorial
這是我得到一個錯誤的代碼:
// annotation callout opens this mapItem in Maps app
func mapItem() -> MKMapItem {
let addressDict = [String(kABPersonAddressStreetKey): self.subtitle]
let placemark = MKPlacemark(coordinate: self.coordinate, addressDictionary: addressDict)
let mapItem = MKMapItem(placemark: placemark)
mapItem.name = self.title
return mapItem
的錯誤是:
不能調用類型「mkplacemark」初始化與列表類型的參數'coordinate:CLLocationCoordinate2D,addressDictionary:[String:String?])'
再次感謝,
特拉維斯。