嗨,我是目标 c 的新手。
我将我的 URL 数据保存在资源下的 plist 文件中。这是我的代码。
NSString *plistPath =[[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"myfile.plist"];
NSDictionary *plistDict = [[NSUserDefaults standardUserDefaults]
dictionaryRepresentation];
if([plistDict writeToFile:plistPath atomically:YES]) {
NSLog(@"success");
} else {
NSLog(@"error");
}
现在我想从保存的 plist(我的 file.plist)中检索 URL,我如何检索这个我可以使用该 url 进行 web 视图。
例如:
urlString.stringValue = ????
在这里,我正在使用urlString.stringValue
webview。
[[webview mainFrame] loadRequest:[NSURLRequest requestWithURL:
[NSURL URLWithString:urlString.stringValue]]];
谢谢