NSDictionary *picturesDictionary = [NSDictionary dictionaryWithContentsOffile:[[NSBundle mainBundle] pathForResource:@"Photos" ofType:@"pList"]]; imageArray = [picturesDictionary objectForKey:@"PhotosArray"]; PhotosInAlbum.image = [UIImage imageWithContentsOffile:[imageArray objectAtIndex:1]];
但实际上没有任何反应,我的ImageVIEw是空的!我也有两个按钮来转发后向图像.
PList的内容:
解决方法@H_404_19@ pList是不正确的,它应该是Root ---- Dictionary PhotosArray ----- Array Item 0 ------ String -- Beach.jpg
然后将此代码添加到vIEwController中.确保Interface imageVIEw链接到IBOutlet.
NSDictionary *picturesDictionary = [NSDictionary dictionaryWithContentsOffile:[[NSBundle mainBundle] pathForResource:@"Photos" ofType:@"pList"]]; NSArray *imageArray = [picturesDictionary objectForKey:@"PhotosArray"]; PhotosInAlbum.image = [UIImage imagenamed:[imageArray objectAtIndex:0]];总结
以上是内存溢出为你收集整理的iphone – iOS:从plist文件加载图像全部内容,希望文章能够帮你解决iphone – iOS:从plist文件加载图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)