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にテーブルビューがあります。テーブルビューにはプロトタイプセルがあります。ユーザーがセルに触れたときに、iPhoneの外部サファリでURLを開く必要があります。それを達成する方法は?ここから、次の行を呼び出す必要があります。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:siteURL]];
インスタンスがテーブルビューのデリゲートに設定されているクラスでは、次のようになります。
- (void)tableView:(UITableView *)tv didSelectRowAtIndexPath:(NSIndexPath *)ip { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:siteURL]]; }