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];  

posted on 2015-11-14 16:54  chengjunde  阅读(128)  评论(0编辑  收藏  举报

导航