如何覆盖 UITextView 链接检测?
我有一个自动检测链接 URL 的 UITextView。我不想在 Safari 中打开它,而是想展示我自己的包含 Web 视图的模态视图控制器,以便我的用户留在应用程序中。
我怎样才能实现这个目标?
I have a UITextView that is auto-detecting link URL's. Instead of opening it in Safari, I want to present my own modal view controller that contains a webview so my users stay in-app.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你不能。
当点击链接时,UIWebView 会告诉其委托,而 UITextView 不提供此类信息。
您可以使用 UIWebView 而不是 UITextView,但这是一种解决方法......
I don't think you can.
Where a UIWebView will tell its delegate when a link is tapped, a UITextView doesn't provide that kind of info.
You could use a UIWebView instead of a UITextView, but that's a workaround...
从所有帐户来看,这可以通过以下方式实现:
信用转到 Muthu.chidambar 这里 http:// forums.macrumors.com/showthread.php?t=745879 (如果它有效,那就是;-))
By all accounts this is possible with the following:
Credit goes to Muthu.chidambar here http://forums.macrumors.com/showthread.php?t=745879 (if it works that is ;-) )