我有一个包含URL(String)的实例方法: [self.storyLink description]。
NSLog(@"Link : %@", [self.storyLink description]);
日志给了我:
链接:http://testdomain.com/item/9656/
然而,当我尝试在tableview中使用[self.storyLink description]期望Safari在单击单元格时打开该链接时,没有任何反应。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[self.storyLink description]]];
然而这很好用:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://testdomain.com/item/9656/"]];
有什么问题?
由于