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 have added a UIWebView to my app, in order to allow users to browse internet site, but the UIWebView always appears blank even if I hardcode the URL.

Please can anyone tell me where is the wrong in my code:

- (void)viewWillAppear:(BOOL)animated {  
    [super viewWillAppear:animated];

    if(!webView)
    {
        self.webView = [[UIWebView alloc]init];
    }

    webView.delegate = self;

    NSString *urlAddress = @"http://www.google.com";
    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlAddress];
    //URL Requst Object
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    //Load the request in the UIWebView.
    [webView loadRequest:requestObj];   
}

- (void)webViewDidStartLoad:(UIWebView *)webView
{
    NSLog(@"Started");
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSLog(@"Stopped");
}

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
    NSLog(@"Error");
}
share|improve this question
Have u connected ur webView with ur outlet? – Deviator May 2 '12 at 12:21
Where did you create the web view? If XIB: Are you sure that the webview is connected to the webview outlet and that its delegate is set? – FelixLam May 2 '12 at 12:21
1  
i tried your code.....its loading normally.....check the outlets and check if viewWillAppear is firing(debug ) – sujith1406 May 2 '12 at 12:25
2  
dear all, when i connect to the net using safari on simulator it ask me to put the username and password because my company used proxy. may be this Cause the problem. – Khattab May 2 '12 at 13:05
1  
@Hector, thank you, yes it's proxy problem. – Khattab May 15 '12 at 7:42
show 10 more comments

1 Answer

try this tutorial it may help you,

http://www.iphonesdkarticles.com/2008/08/uiwebview-tutorial.html

share|improve this answer
i tried this tutorial. – Khattab May 2 '12 at 12:45

Your Answer

 
discard

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

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