我使用此代碼將我的按鈕鏈接分配到wiki頁面,同時捕獲UILabel中的countryName.text成爲URL的一部分,但是當我按下Xcode時會出現錯誤它。這裏的代碼:iPhone NSURL error
- (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];}
在此先感謝。
什麼是你得到在Xcode中的錯誤? –
擺脫%@符號之一。 – danielbeard