- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
不知何故,我的 rightCalloutAccessoryView 不可见,这就是我的样子:
按钮位于右侧,但它是白色的。我如何改变它的颜色?据我所知,它通常应该是蓝色的。
这是我的代码:
func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
if !(annotation is CustomPointAnnotation) {
return nil
}
let reuseId = "test"
var anView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId) as? MKPinAnnotationView
if anView == nil {
anView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
anView!.canShowCallout = true
anView!.calloutOffset = CGPoint(x: -5, y: 5)
anView!.rightCalloutAccessoryView = UIButton.buttonWithType(UIButtonType.InfoLight) as! UIView
}
else {
anView!.annotation = annotation
}
//Set annotation-specific properties **AFTER**
//the view is dequeued or created...
let cpa = annotation as! CustomPointAnnotation
anView!.image = UIImage(named:cpa.imageName)
return anView
}
最佳答案
啊,我找到了答案。我就是这样做的。
var calloutButton = UIButton.buttonWithType(.DetailDisclosure) as! UIButton
calloutButton.setImage(UIImage(named: "arrow-right.png"), forState: UIControlState.Normal)
calloutButton.tintColor = UIColor(red: CGFloat(51/255.0), green: 51/255, blue: 51/255, alpha: 1)
显然,我只需调用按钮“tintColor”即可。
关于ios - 更改 rightCalloutAccessoryView 的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32565713/
不知何故,我的 rightCalloutAccessoryView 不可见,这就是我的样子: 按钮位于右侧,但它是白色的。我如何改变它的颜色?据我所知,它通常应该是蓝色的。 这是我的代码: func
我在MKMapView上使用了MKPinAnnotationView,标题和副标题正常显示,但是rightCalloutAccessoryView没有显示。 我试了很多谷歌,但还不能显示出来。我的代码
我的 iphone 应用程序没有什么问题。我有这样的类和接口(interface): CinemaMapAnnotation.h #import #import @interface Cinema
总的来说,我对 iOS 的东西还是很陌生,在测试我们的应用程序与 iOS 8 的兼容性时发现了一个问题。在 iOS 7 中,一切正常,但在 iOS 8 中,rightCalloutAccessoryV
我的 calloutAccessoryControlTapped 当我点击注释 View 和 this behavior it's right 时也会被调用.但是我如何检测用户是否点击了正确的附件 V
我分配了一个 MKAnnotationView,并在注释的右侧显示了一个 DetailDisclosure 按钮。我如何知道用户何时单击注释按钮?这就是我的代码现在的样子 - UIButton *ri
我有一张带有数十个注释的 map 。注释正确显示标题和副标题,我想在它们的右侧添加一个自定义“Go”按钮。 “前往”按钮将打开 Apple map ,并向用户指示他们在 map 上查看的注释。 我复制
我只有一个注释类.. 出于一个原因,注释只显示标题,并且它有不同的 pinColor,我通过在注释类中声明一个方法做得很好.. 但出于同样的原因我想隐藏披露按钮.. 我只知道 rightCallout
当由 rightCalloutAccessoryView 触发时,我正在尝试访问我在自定义注释数据中设置的一些自定义数据。我收到如下所述的编译器错误。这是我的自定义 MKAnnotation,带有几个
我正在尝试将我的一个应用程序更新到 iOS7。问题是,在我的 MKMapView 上,当我点击图钉时,它会显示 Callout,但是当点击 rightCalloutAccessoryView 时,它不
我是只用类似的图像初始化一个按钮,还是有任何我可以使用的默认值? MKPinAnnotationView *newAnnotation = [[MKPinAnnotationView alloc] i
如何在 map View 中更改注释 View 的rightCalloutAccessoryView 按钮的图像?我使用以下方法在注释 View 中设置按钮。 annotationView!.righ
我是一名优秀的程序员,十分优秀!