码迷,mamicode.com
首页 > 移动开发 > 详细

iOS学习之NSBundle介绍和使用

时间:2015-11-14 17:46:26      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:

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

iOS学习之NSBundle介绍和使用

标签:

原文地址:http://www.cnblogs.com/chengjun/p/4964648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!