1.
UIImage *img = [UIImage imageNamed:@"imageName"];
2.
NSString *imageFilePath = [[NSBundle mainBundle] pathForResource:@"" ofType:@"jpg"];
NSData *imageData = [NSData dataWithContentsOfFile:imageFilePath];
UIImage *image = [UIImage imageWithData:imageData];