在Swift中我将尝试在顶部设置引脚位置(zPosition),我在地图上添加10个引脚,当前引脚(任意一个引脚)显示在顶部并且这些当前引脚图像是变化的,但它没有显示在顶部,请帮帮我这是我的代码 我试过这些代码
// pinView!.layer.zPosition = 1
//pinView?.bringSubviewToFront(self.view)
pinView!.superview!.bringSubviewToFront(view)
应用程序在这些行上崩溃
pinView!.superview!.bringSubviewToFront(view)
它归还我 致命错误:在解包可选值时意外发现nil 请帮帮我如何在顶部显示
这是我的代码
func mapView(mapView: MKMapView,
viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView?{
if annotation is MyAnnotation == false{
return nil
}
/* First typecast the annotation for which the Map View has
fired this delegate message */
let senderAnnotation = annotation as! MyAnnotation
// -------------------------- For ios 9 -------------------
let reuseId = "pin"
var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId)
if pinView == nil {
pinView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
pinView!.canShowCallout = true
}else{
pinView!.annotation = annotation
}
pinView!.tag = senderAnnotation.getTag;
// print(senderAnnotation.getTag)
if annotation is MyAnnotation {
print(senderAnnotation.pinColor)
if(senderAnnotation.pinColor == .Red)
{
if(currentIndex == senderAnnotation.getTag)
{
print("currentIndex==\(currentIndex)********")
pinView!.image = UIImage(named: "jivemap_pin_rough_o.png")
// pinView!.layer.zPosition = 1
//pinView?.bringSubviewToFront(self.view)
pinView!.superview!.bringSubviewToFront(view)
}else
{
pinView!.image = UIImage(named: "jivemap_pin_rough_g.png")
}
}
else
{
if(currentIndex == senderAnnotation.getTag)
{
print("currentIndex==*********\(currentIndex)********")
pinView!.image = UIImage(named: "jivemap_pin_o.png")
// pinView!.layer.zPosition = 1
//pinView?.bringSubviewToFront(self.view)
pinView!.superview!.bringSubviewToFront(view)
}else
{
pinView!.image = UIImage(named: "jivemap_pin_g.png")
}
}
pinView!.rightCalloutAccessoryView = UIButton(type: UIButtonType.DetailDisclosure) as UIView
// pinView
// return pinView
}
return pinView
//return annotationView
}
我还有一个问题,我们可以选择缩放以显示所有10个针脚任何解决方案对于这些点如何设置变焦杆,相机级别显示地图视图上的所有10个针脚 当我搜索这些点时,我发现了这些代码,但我无法理解如何使用这些代码。
CGFloat latDelta = rand()*0.125/RAND_MAX - 0.02;
CGFloat lonDelta = rand()*0.130/RAND_MAX - 0.08;
CGFloat lat = 59.189358;
CGFloat lng = 18.267839;
CLLocationCoordinate2D newCoord = {lat+latDelta, lng+lonDelta};
DTSAnnotation *annotation = [DTSAnnotation annotationWithCoord:newCoord];
请帮我解决这两点相关地图 谢谢你
答案 0 :(得分:0)
关于第一点,我遇到了同样的问题。错误在于代码行pinView!.superview!.bringSubviewToFront(view)
。
如你所愿带到前面的pinView,你必须这样做pinView!.superview!.bringSubviewToFront(pinView)
。
因为你采用pinView的超视图并且必须将pinView设置为前面。对我而言,这是有效的。