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 want to create an ios application which incuding a UIWebview. I saw so many tutorials that saying how to load webview when start the application. But what I want is when user click on a link in one View,the web page should be loaded in seperate View. This is the code in my button click event.

`

 -(IBAction)visitWeb:(id)sender{
         web *wb=[[web alloc]initWithNibName:nil bundle:nil];
     [self presentModalViewController:wb animated:YES];
     [wb release];}

This is in web

`

 - (void)viewDidLoad {


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];

[super viewDidLoad];  }

But it not display anything. Just display the empty UIWebView What is the reason for it.plz give me a solution with the code.

Thanks,

share|improve this question
1  
You should be calling [super viewDidLoad] before anything else in your viewDidLoad(). – Zhang Jul 27 '12 at 8:55

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.