У меня есть этот метод, который я создал после подключения к SBAwayView:
- (UIImage *) colorizeImage:(UIImage *)img color:(UIColor *)color{
NSString *name = @"badge.png";
UIImage *img = [UIImage imageNamed:name];
UIGraphicsBeginImageContext(img.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[color setFill];
CGContextTranslateCTM(context, 0, img.size.height);
CGContextScaleCTM(context, 1.0, -1.0);
CGContextSetBlendMode(context, kCGBlendModeColorBurn);
CGRect rect = CGRectMake(0, 0, img.size.width, img.size.height);
CGContextDrawImage(context, rect, img.CGImage);
CGContextClipToMask(context, rect, img.CGImage);
CGContextAddRect(context, rect);
CGContextDrawPath(context,kCGPathFill);
UIImage *coloredImg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return coloredImg;
}
Но когда я отправляю ему цвет
[[UIColor alloc] initWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];
, а изображение просто возвращает его как полностью затемненный!