I am trying to display web pages using UIwebview on iPad.
I used following code :-
NSString *urlAddress=@"http://google.com";
NSURL *url = [NSURL URLWithString:urlAddress];
NSLog(@"The value of url in screen 2 is %@",url);
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[web loadRequest:requestObj];
web is an object of type uiwebview . This works fine with certain links but when i tried to open below link http://deverpids.ltisap.com:8000/sap(bD1lbiZjPTgwMA==)/bc/bsp/sap/zbbdashboard/demo.htm#infohttp://deverpids.ltisap.com:8000/sap(bD1lbiZjPTgwMA==)/bc/bsp/sap/zbbdashboard/demo.htm#info It does not display anything .Read few articles and taught this could be related to a proxy issue
How to deal with proxy setting in UIWebView? so tried to use this but no success . code used is as below :
NSURL *url = [NSURL URLWithString:@"http://google.com"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
NSString *response = [request responseString];
NSLog(@"error is %@",response);
}
But now nothing loads up in webview .how do i tackle this .