我正在使用此代码将我的按钮链接分配给 wiki 页面,同时将 UILabel 中的 countryName.text 捕获为 URL 的一部分,但是当我按下它时 Xcode 给我一个错误。这是代码:
- (IBAction)openWiki:(id)sender {
NSString *sampleUrl = [[NSString alloc] initWithFormat:@"http://en.wikipedia.org/wiki/%@%@",self.countryName.text];
NSURL *wikiUrl = [[NSURL alloc] initWithString:sampleUrl];
[[UIApplication sharedApplication] openURL:wikiUrl];}
提前致谢。