Guest User

Untitled

a guest
Jun 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // save the info system button image to where you can access it
  2.  
  3. UIButton *info = [UIButton buttonWithType:UIButtonTypeInfoLight];
  4. NSData *img = UIImagePNGRepresentation([info imageForState:UIControlStateNormal]);
  5. NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"info.png"];
  6. [img writeToFile:path atomically:NO];
  7.  
  8. NSLog(@"%@", path);
Add Comment
Please, Sign In to add comment