Is it possible to perform custom action when user touch autodetected phone link in UITextView. Please do not advice to use UIWebView instead.

And please don't just repeat text from apple classes reference - certainly I've already read it.

Thanks.

link|improve this question

feedback

5 Answers

up vote 22 down vote accepted

A nice way to do this is to by subclassing UIApplication and ovewriting the -(BOOL)openURL:(NSURL *)url

@interface MyApplication : UIApplication {

}

@end

@implementation MyApplication


-(BOOL)openURL:(NSURL *)url{
    if  ([self.delegate openURL:url])
         return YES;
    else
         return [super openURL:url];
}
@end

You will need to implement openURL: in your delegate.

Now, to have the application start with your new subclass of UIApplication, locate the file main.m in your project. In this small file that bootstraps your app, there is usually this line:

int retVal = UIApplicationMain(argc, argv, nil, nil);

The third parameter is the class name for your application. So, replacing this line for:

int retVal = UIApplicationMain(argc, argv, @"MyApplication", nil);

This did the trick for me.

link|improve this answer
At last real answer! Simple and cool idea. Thanks, it works. It was long time ago, so I've managed without it already. Still may help in future. Small correction though, result from super in else branch should be returned: return [super openURL:url]; – Vladimir Dec 6 '10 at 9:13
Cool! I made the suggested correction. Cheers! – Felz Dec 6 '10 at 11:46
1  
You could also categorize UIApplication and replace the openURL implementation. Though this way it is tricky (but not impossible) to reference the original implementation. – Max Howell Dec 6 '10 at 13:01
FYI - I posted a BrowserViewController on GitHub that fully implements this, as well as supporting links clicked from within a UIWebView here: github.com/nbuggia/Browser-View-Controller--iPhone-. – Nathan Buggia Nov 5 '11 at 2:53
Good one Nathan! – Felz Nov 5 '11 at 15:08
show 1 more comment
feedback

I haven't tried that myself but you can try to implement application:handleOpenURL: method in your application delegate - it looks like all openURL request pass through this callback.

link|improve this answer
feedback

Not sure how you would intercept the detected data link, or what type of function you need to run. But you may be able to utilize the didBeginEditing TextField method to run a test/scan through the textfield if you know what your looking for..such as comparing text strings that meet ###-###-#### format, or begin with "www." to grab those fields, but you would need to write a little code to sniff through the textfields string, reconize what you need, and then extract it for your function's use. I don't think this would be that difficult, once you narrowed down exactly what it is that you wanted and then focussed your if() statement filters down to very specific matching pattern of what you needed.

Of couse this implies that the user is going to touch the textbox in order to activate the didBeginEditing(). If that is not the type of user interaction you were looking for you could just use a trigger Timer, that starts on ViewDidAppear() or other based on need and runs through the textfields string, then at the end of you run through the textfield string methods that you built, you just turn the Timer back off.

link|improve this answer
feedback

application:handleOpenURL: is called when another app opens your app by opening a URL with a scheme your app supports. It's not called when your app begins opening a URL.

I think the only way to do what Vladimir wants is to use a UIWebView instead of a UITextView. Make your view controller implement UIWebViewDelegate, set the UIWebView's delegate to the view controller, and in the view controller implement webView:shouldStartLoadWithRequest:navigationType: to open [request URL] in a view instead of quitting your app and opening it in Mobile Safari.

link|improve this answer
feedback

Instead of extending UIApplication you can just block the userInteraction of the UITextView

This is working for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.