从Plist打开WebView URL?

时间:2012-07-03 02:07:13

标签: iphone objective-c xcode uiwebview plist

有没有办法检索我在Plist中的网址并从中进行网页浏览?

1 个答案:

答案 0 :(得分:1)

是的,您可以使用以下内容打开plist:

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

然后,您就可以在plistDictionary

中找到您的网址