Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 .

share|improve this question
if I click on the link my browser tells me that the site does not exist. Maybe the same happens thing happens in your app? – Matthias Bauch Apr 5 '12 at 9:26
I can confirm the above behavior with the link, it is invalid. – borrrden Apr 5 '12 at 9:41
i dont think so ..because it works with one of the code snippets and not with other ...help me out on what could be the issue . – Amit Nalawade Apr 5 '12 at 10:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.