单击应用程序时,我的应用程序中有一个按钮会将您带到存储在plist中的企业网站。我可以使用此代码的按钮:
-(IBAction)search:(id)sender{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];
}
现在,我如何处理此代码以从已建立的plist调用网站。
最佳答案
从p列表中获取链接字符串。
NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Info" ofType:@"plist"]];
NSString * urlString = dictionary[@"TheKeyPath"]; // theKeyPath referring to the key that you assigned to the url string in the p-list
然后很简单...
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
关于ios - Xcode中来自Plist的超链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19471091/