iOS学习之NSBundle介绍和使用
http://blog.csdn.net/totogo2010/article/details/7672271
新建一个Single View Application,并在加入viewDidLoad方法里加入如下代码:
- NSBundle *mainBundle = [NSBundle mainBundle];
-
- NSString *imagePath = [mainBundle pathForResource:@"QQ20120616-1" ofType:@"png"];
- NSLog(@"%@", imagePath);
- UIImage *image = [[UIImage alloc]initWithContentsOfFile:imagePath];
- UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
- [self.view addSubview:imageView];
iOS学习之NSBundle介绍和使用
原文:http://www.cnblogs.com/chengjun/p/4964648.html