I want to get the url of the link when it is clicked in UIWebView .
I am using this code
NSString *currentURL = [NSString stringWithFormat:@"%@", webview.request.URL.absoluteString];
NSLog(@"Current URL == %@",currentURL);
It gives me null
Current URL == (null)