默认标注填写左侧附件视图的颜色

时间:2016-02-14 21:26:37

标签: ios swift mapkit

有没有办法让标注的左侧附件视图只用背景颜色填充视图的其余部分? Current callout

我目前正在使用此

let leftView = UIImageView(image: UIImage(named: "leaf32"))
leftView.backgroundColor = UIColor.redColor()
anView.leftCalloutAccessoryView = leftView

我希望在苹果地图默认标注中将背景填充为蓝色。 Apples map callout

1 个答案:

答案 0 :(得分:4)

这样做:

let leftView = UIImageView(image: UIImage(named: "leaf32"))
leftView.frame = CGRect(x: 0, y: 0, width: 50, height: 50)
leftView.backgroundColor = UIColor.redColor()
anView.leftCalloutAccessoryView = leftView