标签: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; }
标签:content source image bsp 一个 nsbundle nonatomic nsstring main
原文地址:http://www.cnblogs.com/zqrios/p/7391083.html