将TintColor设置为MKAnnotationView图像

时间:2014-03-27 17:19:24

标签: ios objective-c uiimageview mkannotation mkannotationview

我正在为iOS 7.0+撰写申请,我想使用新功能,即:imageWithRenderingMode。我有一个使用此代码的地图注释:

-(MKAnnotationView*)annotationView {
    MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:self reuseIdentifier:@"AnnotationIdentifier"];
    annotationView.enabled = YES;
    annotationView.canShowCallout = YES;
    annotationView.image = [[UIImage imageNamed:@"star"] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
    annotationView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    annotationView.tintColor = [UIColor redColor];
    return annotationView;
}

我原本以为我的针脚是红色的,但是保持黑色,只有标注(i)图标变成红色。

enter image description here

我试图在self.view.tintColor中设置self.mapView.tintColorViewController,但这也不起作用。如何将此引脚变为红色?

7 个答案:

答案 0 :(得分:12)

有一个更好的解决方案,而不是那些不涉及创建UIImageView

的解决方案

此Swift代码将创建UIImage的彩色版本。

extension UIImage {

    func colorized(color : UIColor) -> UIImage {
        let rect = CGRectMake(0, 0, self.size.width, self.size.height);
        UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0);
        let context = UIGraphicsGetCurrentContext();
        CGContextSetBlendMode(context, .Multiply)
        CGContextDrawImage(context, rect, self.CGImage)
        CGContextClipToMask(context, rect, self.CGImage)
        CGContextSetFillColorWithColor(context, color.CGColor)
        CGContextFillRect(context, rect)
        let colorizedImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        return colorizedImage
    }
}

这样称呼:

UIImage(named: "myImage")!
    .imageWithRenderingMode(.AlwaysTemplate)
    .colorized(UIColor.red())

答案 1 :(得分:5)

我可以通过capturing an UIView to UIImage来完成这项工作:

UIImage *pin = [UIImage imageNamed:@"pin"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, pin.size.width, pin.size.height)];
imageView.image = [pin imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
imageView.tintColor = [UIColor grayColor]; // set the desired color

// now the magic...
UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, imageView.opaque, 0.0);
[imageView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

annotationView.image = img;

答案 2 :(得分:5)

与@ sandy-chapman相同,但在Swift 3中。我的图像被翻转,所以我再次将它们翻转。

extension UIImage {

  func colorized(color : UIColor) -> UIImage {

    let rect = CGRect(x: 0, y: 0, width: self.size.width, height: self.size.height)

    UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0)
    if let context = UIGraphicsGetCurrentContext() {
        context.setBlendMode(.multiply)
        context.translateBy(x: 0, y: self.size.height)
        context.scaleBy(x: 1.0, y: -1.0)
        context.draw(self.cgImage!, in: rect)
        context.clip(to: rect, mask: self.cgImage!)
        context.setFillColor(color.cgColor)
        context.fill(rect)
    }

    let colorizedImage = UIGraphicsGetImageFromCurrentImageContext()

    UIGraphicsEndImageContext()
    return colorizedImage!

  }
}

答案 3 :(得分:4)

多么令人沮丧。我解决了这个问题(没有其他属性配置):

-(MKAnnotationView*)annotationView {
    MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation: self reuseIdentifier: @"AnnotationIdentifier"];
    UIImage *image = [[UIImage imageNamed: @"star"] imageWithRenderingMode: UIImageRenderingModeAlwaysTemplate];
    UIImageView *screwYouApple = [[UIImageView alloc] initWithImage: image];
    screwYouApple.tintColor = [UIColor redColor];
    [annotationView addSubview: screwYouApple];
    return annotationView;
}

基本上,我吹掉image的{​​{1}}属性,并使用正确着色的annotationView作为注释的UIImageView

变量命名有助于体验的消解。

答案 4 :(得分:1)

意识到我对游戏很晚,但是我一直在寻找与您相同的东西,但是发现这很有用。

使用MKMarkerAnnotationView,它具有属性markerTintColor

您不会获得自定义图钉图像,但它看起来很像您在问题中使用的标记(请参阅我的附件图像)。

以下是我的用法摘要:

  // Somewhere else 
  mapView.register(MKMarkerAnnotationView.self, forAnnotationViewWithReuseIdentifier: MKMarkerAnnotationView.self.description())  

  func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
        guard let companyAnnotation = annotation as? CompanyAnnotation else { return nil }
        let view = MKMarkerAnnotationView(annotation: annotation, reuseIdentifier: MKMarkerAnnotationView.self.description())
        view.markerTintColor = .colorFor(category: companyAnnotation.company.category)
        return view
   }

enter image description here

答案 5 :(得分:1)

这对我有用:

web3.eth.sendTransaction({ to: "0xc25903033606D6D9FeE655E58F024b152B1734C1", from: '0x2fbFa394f462755a1c5c68eB4cee47b243046afc'})

(基于@Marcio Fonseca的回答)

答案 6 :(得分:0)

使用tintColor似乎无法完成此操作。 MKAnnotationView不像UIImageView那样使用色调颜色进行图像渲染。您需要自己编写某种方法来绘制正确着色的图像,或者提供所需颜色的图像。