MapKit iOS 9 detailCalloutAccessoryView用法

前端之家收集整理的这篇文章主要介绍了MapKit iOS 9 detailCalloutAccessoryView用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
观看 WWDC video 206后,我认为这将是一个简单的任务,将详细调用视图添加到mapView注释视图.

所以,我假设我做错了事情.

用我的pin视图设置

  1. func mapView(mapView: MKMapView,viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
  2.  
  3. let view:MKAnnotationView!
  4.  
  5. if let dequed = routeMapView.dequeueReusableAnnotationViewWithIdentifier("pin") {
  6. view = dequed
  7. }
  8. else {
  9. view = MKPinAnnotationView(annotation: annotation,reuseIdentifier: "pin")
  10. }
  11.  
  12. let x = UIView(frame: CGRectMake(0,200,200))
  13. x.backgroundColor = UIColor.redColor()
  14.  
  15. // shows the red
  16. //view.leftCalloutAccessoryView = x
  17.  
  18. // working as no subtitle - but no red view
  19. view.detailCalloutAccessoryView = x
  20.  
  21. view.canShowCallout = true
  22. return view
  23. }

我只得到这个

我知道这个视图是有效的,因为如果我用leftCalloutAccessoryView来尝试它

我一定是错过了一些东西.注意,如果我只是添加一个图像到detailCalloutAccessoryView像

  1. view.detailCalloutAccessoryView = UIImage(named:"YourImageName")

图像在那里,尺寸正确等

我只是无法弄清楚如何放入我自己的自定义视图.

谢谢

解决方法

您必须为视图的宽度和高度添加一些约束:
  1. func mapView(mapView: MKMapView,viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
  2. var av = mapView.dequeueReusableAnnotationViewWithIdentifier("id")
  3. if av == nil {
  4. av = MKPinAnnotationView(annotation: annotation,reuseIdentifier: "id")
  5. }
  6.  
  7. let myView = UIView()
  8. myView.backgroundColor = .greenColor()
  9.  
  10. let widthConstraint = NSLayoutConstraint(item: myView,attribute: .Width,relatedBy: .Equal,toItem: nil,attribute: .NotAnAttribute,multiplier: 1,constant: 40)
  11. myView.addConstraint(widthConstraint)
  12.  
  13. let heightConstraint = NSLayoutConstraint(item: myView,attribute: .Height,constant: 20)
  14. myView.addConstraint(heightConstraint)
  15.  
  16. av!.detailCalloutAccessoryView = myView
  17. av!.canShowCallout = true
  18.  
  19. return av!
  20. }

添加一个intrinsicContentSize也可以.

我做了一些测试,发现,当您将视图设置为detailCalloutAccessoryView时,MapKit将自动设置翻译AutotoresizingMaskIntoConstraints为false.

在WWDC 2015年会议“What’s New in MapKit”中,被告知“支持汽车布局”.我认为苹果真的意味着你必须使用汽车布局?

猜你在找的iOS相关文章