首页 > 其他 > 详细

NSBundle、NSArray、NSDictionay

时间:2015-12-17 23:53:22      阅读:540      评论:0      收藏:0      [点我收藏+]

NSBundle、NSArray、NSDictionay

读取plist文件

NSDictionary  *dict= [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"plist"]];

NSArray*arr=[NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"plist"]];

 读取后缀为.bundle的文件

NSString *bundlePath = [[[NSBundle mainBundle]bundlePath]stringByAppendingPathComponent:@"xx.bundle"];

NSBundle *bundle = [NSBundle bundleWithPath:bundlePath];

NSString *path = [bundle pathForResource:imageName ofType:@"png"];

UIImage *image=[UIImage imageWithContentsOfFile:path];

 NSString *path = [[NSBundle mainBundle]pathForResource:@"xx" ofType:@”plist”];
NSURL *url =  [[NSBundle mainBundle] pathForResource:@"xx " ofType:@"plist"];

NSBundle、NSArray、NSDictionay

原文:http://www.cnblogs.com/linxiu-0925/p/5055608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!