0

有没有办法检索我在 Plist 中的 url 并从中制作 webview?

4

1 回答 1

1

是的,您可以使用以下方式打开 plist:

NSString *path = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"your.plist"];
NSDictionary *plistDictionary = [[NSDictionary dictionaryWithContentsOfFile:path] retain];

然后,您将能够在plistDictionary.

于 2012-07-03T02:11:34.733 回答