In my app,I used UIwebview where I need to hyperlink some phone numbers,email & URLs.I did the following:
- (void)viewDidLoad
{
credits.delegate=self;
}
-(void)loadScreen
{
scroll=[[UIScrollView alloc]init];
credits=[[UIWebView alloc]init];
NSString *Address = @"www.***.com/php/getjson.php?method=";
jmax = [NSURL URLWithString:Address];
NSData *Data =[ NSData dataWithContentsOfURL:jmax];
String = [[NSString alloc] initWithData:Data encoding:NSUTF8StringEncoding];
NSString * creditsHtml = [NSString stringWithFormat:@" <font face=\"Arial\"><H3 align=\"center\"> Credits </H3> %@ <br>Phone%@</font>", String,phone];
credits.userInteractionEnabled = YES;
credits.frame=CGRectMake(10, (frame1.size.height + 564), 300, 100);
credits.dataDetectorTypes=UIDataDetectorTypeAll;
credits loadHTMLString:creditsHtml baseURL:nil];
[scroll addSubview:credits];
}
-(BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType{
NSString *urls= jmaxString;
NSURL *requestURL =[NSURL URLWithString: urls];
if ( ( [ [ requestURL scheme ] isEqualToString: @"http" ] || [ [ requestURL scheme ] isEqualToString: @"https" ] || [ [ requestURL scheme ] isEqualToString: @"mailto" ] )
&& ( navigationType == UIWebViewNavigationTypeLinkClicked ) ) {
return ![ [ UIApplication sharedApplication ] openURL: requestURL ];
}
return YES;
}
Edited shouldStartLoadWithRequest: method
-(BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType{
NSURL *requestURL =[request URL];
if ( ( [ [ requestURL scheme ] isEqualToString: @"http" ] || [ [ requestURL scheme ] isEqualToString: @"https" ] || [ [ requestURL scheme ] isEqualToString: @"mailto" ] )
&& ( navigationType == UIWebViewNavigationTypeLinkClicked ) ) {
return ![ [ UIApplication sharedApplication ] openURL: requestURL ];
}
NSLog(@"URL %@",requestURL);
return YES;
}
Got error in NSURL *requestURL =[request URL]; with Expected ; at the end & Extraneous ')' before ';'
openURL : requestURLbyopenURL:[requestURL URL]? – Zakaria Mar 14 '12 at 13:55UIWebViewDelegateprotocol ^^ – Zakaria Mar 14 '12 at 14:05viewDidLoad? – Zakaria Mar 14 '12 at 14:15