- (UIImage*)createImage:(NSString*)inFileName
{
NSString *pathForResource = [inFileName stringByDeletingPathExtention];
NSString *extension = [inFileName pathExtension];
NSString *filePath = [[NSBundle mainBundle] pathForResource:pathForResource ofType:extension];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:filePath];
return image;
}
- (UIImageView*)createImageView:(NSString*)inFileName
{
UIImage *image = [self createImage:inFileName];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[imageView setBounds:CGRectMake(0, 0, image.size.width, image.size.height)];
[image release];
image = nil;
return imageView;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.