iOS学习之NSBundle介绍和使用

 iOS学习之NSBundle介绍和使用

http://blog.csdn.net/totogo2010/article/details/7672271

新建一个Single View Application,并在加入viewDidLoad方法里加入如下代码:

 

[cpp] view plaincopy
 
  1. //    通过使用下面的方法得到程序的main bundle  
  2.     NSBundle *mainBundle = [NSBundle mainBundle];  
  3.       
  4.     NSString *imagePath = [mainBundle pathForResource:@"QQ20120616-1" ofType:@"png"];  
  5.     NSLog(@"%@", imagePath);  
  6.     UIImage *image = [[UIImage alloc]initWithContentsOfFile:imagePath];  
  7.     UIImageView  *imageView = [[UIImageView alloc] initWithImage:image];   
  8.     [self.view addSubview:imageView];  
原文地址:https://www.cnblogs.com/chengjun/p/4964648.html