@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; }
时间: 2024-10-25 08:45:06