我正在将一个图片库合并到我的项目中。它目前从本地 plist 文件中读取,我需要将其更改为从 Web 服务器读取。我已经阅读了很多方法来做到这一点,但不能让它在我的上下文中工作。这看起来简单得令人发狂。下面是我的代码:
NSString *plistPath =
[[NSBundle mainBundle] pathForResource:@"Images" ofType:@"plist"];
NSArray *imagePaths = [NSArray arrayWithContentsOfFile:plistPath];
你可以在这里查看我的 plist
这是我尝试过的无济于事:
//get image URLs
NSURL *plistPath = [NSURL URLWithString:@"http://kpd.altervista.org/Images.plist"];
NSDictionary *imagePaths = [[NSDictionary alloc] initWithContentsOfURL:plistPath];
我非常感谢任何人的帮助。