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.
全部,
我的 UITableView 的详细视图中有丰富的文本和链接:
按下链接时,URL 会加载到显示富文本的 UIWebView 中。我希望 URL 在 Safari 中打开。
有人能告诉我如何正确地做到这一点吗?是否有适合此目的的 UIWebView 委托方法?
谢谢
// where url is an NSURL [[UIApplication sharedApplication] openURL:url];
这将在默认操作系统浏览器中打开链接。
文档在这里。