redribben

display image

Oct 27th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (void)displayImage {
  2.     NSString *imageName = [@"http://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png" lastPathComponent];
  3.     NSArray *dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  4.     NSString *documentDirectoryPath = dirPaths[0];
  5.     NSString *filePath = [documentDirectoryPath stringByAppendingString:imageName];
  6.     UIImage *image = [[UIImage alloc] initWithContentsOfFile:filePath];
  7.     [self.scheduleImage setImage:image];
  8. }
Advertisement
Add Comment
Please, Sign In to add comment