Guest User

Untitled

a guest
Jan 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #import "ViewController.h"
  2.  
  3. @interface ViewController ()
  4. @property (weak, nonatomic) IBOutlet UIImageView *logoImageView;
  5. @end
  6.  
  7. @implementation ViewController
  8.  
  9. - (void)viewDidLoad {
  10. [super viewDidLoad];
  11. UIImage *logo = self.logoImageView.image;
  12. UIImage *colorLessLogo = [logo imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
  13. self.logoImageView.image = colorLessLogo;
  14. self.logoImageView.tintColor = [UIColor orangeColor];
  15. }
  16.  
  17. @end
Add Comment
Please, Sign In to add comment