iphone – iOS:从plist文件加载图像

iphone – iOS:从plist文件加载图像,第1张

概述我试图将plist文件中的各种图像显示到UIImageView中,我编写了这样的代码: NSDictionary *picturesDictionary = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Photos" ofType:@"plist"]]; im 我试图将pList文件中的各种图像显示到UIImageVIEw中,我编写了这样的代码:

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文件加载图像所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1068019.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存