每当我点击textView上的链接时,我想打开一个Web视图而不是浏览器

时间:2013-12-03 19:56:52

标签: browser webview hyperlink

我有很多输入文字,其中包含textview字段上的链接网址。我只想设置为默认值,每当我点击textview上的任何链接时,它都会弹出webView而不是浏览器。谢谢

1 个答案:

答案 0 :(得分:0)

https://developer.apple.com/library/ios/documentation/uikit/reference/UITextViewDelegate_Protocol/Reference/UITextViewDelegate.html

您可以在UITextViewDelegate中使用此功能:

  • (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange {

    NSLog(@“URL%@”,URL); //网址 // pop webkit

    返回NO; }