어노테이션 디자인 변경
코드
extension TravelInfoViewController: MKMapViewDelegate {
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
guard let annotation = annotation as? stopInfo else {return nil}
let identifier = "stopInfo"
var view : MKMarkerAnnotationView
// 1
if let dequeuedView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier) as? MKMarkerAnnotationView {
dequeuedView.annotation = annotation
view = dequeuedView
} else { //2
view = MKMarkerAnnotationView(annotation: annotation, reuseIdentifier: identifier)
view.canShowCallout = true
view.calloutOffset = CGPoint(x: -5, y: 5)
view.rightCalloutAccessoryView = UIButton(type: .detailDisclosure)
}
return view
}
}
위와 같은 코드로 변경할 수 있습니다
간단하게 말하면 UITableCell 을 사용하는 방법과 거의 비슷하다고 할 수 있습니다
1
1번은 아직 클릭하지 않았을 때를 의미
2
2번은 클릭했을 때를 말합니다
Author And Source
이 문제에 관하여(어노테이션 디자인 변경), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@godo/어노테이션-디자인-변경저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)