0

我正在使用此代码将我的按钮链接分配给 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];}

提前致谢。

4

1 回答 1

3

在您的格式中,您需要两个参数,但只给出一个:

@"http://en.wikipedia.org/wiki/%@%@",self.countryName.text
//                             ^^

删除一个说明符:

- (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];
}
于 2012-05-05T13:27:13.680 回答