Xcode openURL doesn't read link
问题 I have an animal list and special button. When I press the button, I would like to go to Wikipedia and read about this animal more. So I wrote this code: -(IBAction)goWiki:(id)sender { NSString *wikiUrl = "http://ru.wikipedia.org/wiki/"; NSString *url = [NSString stringWithFormat:@"%@%@",wikiUrl,animalTitle]; [[UIApplication sharedApplication]openURL:[NSURL URLWithString:url]]; NSLog(@"%@",url); } NSLog shows that url was written correctly, however, nothing happened. I am 99,9% sure its