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

ios读取plist文件:

时间:2017-08-18 19:51:03      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:content   source   image   bsp   一个   nsbundle   nonatomic   nsstring   main   

@property (nonatomic,strong) NSArray *imageData;//定义一个数组
//懒加载数据
-(NSArray *)imageDate
{
if(_imageDate==nil)
{
    NSBundle *bundle=[NSBundle mainBundle];//mainBundle可以获取手机的任何资源
    NSString *path=[bundle pathForResource:@"imageData" ofType:@"plist"];//获取imageData.plist的全路经
    _imageData=[NSArray arrayWithContentsOffile:path];//把数据存入数组中
    
}
return _imageData;
}

 

ios读取plist文件:

标签:content   source   image   bsp   一个   nsbundle   nonatomic   nsstring   main   

原文地址:http://www.cnblogs.com/zqrios/p/7391083.html

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