终止应用后,UITextView可点击的网址会打开

时间:2012-11-29 07:41:28

标签: objective-c xcode uitextview

我在我的UITextView中使用datadetectortypes来检测链接并导航到页面。但终止应用程序后,应用程序终止,链接打开并显示默认的safari。有没有办法在应用程序中打开链接?

1 个答案:

答案 0 :(得分:0)

如果您有网络视图,则可以这样做

例如

  NSString *urlAddress = @"http://myurl.com";
 //Create a URL object.
  NSURL *url = [NSURL URLWithString:urlAddress];

//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

//Load the request in the UIWebView.
[myWebView loadRequest:requestObj];