Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在情节提要中定义的 ViewController 中有一个表格视图。tableview 有原型单元格。我希望当用户触摸单元格时,应该在 iphone 的外部 safari 中打开一个 url。如何做到这一点?我必须从那里调用以下行:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:siteURL]];
在将实例设置为表视图委托的类中:
- (void)tableView:(UITableView *)tv didSelectRowAtIndexPath:(NSIndexPath *)ip { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:siteURL]]; }