Skip to content

Instantly share code, notes, and snippets.

@Ibrahimhass
Last active January 19, 2019 03:16
Show Gist options
  • Save Ibrahimhass/1c9fb6bbda4b74aad5ac1cb97286094f to your computer and use it in GitHub Desktop.
Save Ibrahimhass/1c9fb6bbda4b74aad5ac1cb97286094f to your computer and use it in GitHub Desktop.
#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIImageView *logoImageView;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIImage *logo = self.logoImageView.image;
UIImage *colorLessLogo = [logo imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
self.logoImageView.image = colorLessLogo;
self.logoImageView.tintColor = [UIColor orangeColor];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment