I have a UIWebView that is supposed to open when the button is pressed, but nothing is happening on the simulator when it is pressed. Can someone maybe see something I did wrong? I can’t figure out what it is. Here is the IBAction for the button:
NSString *fullURL = @"http:coronetjck.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView setScalesPageToFit:YES];
[webView loadRequest:request];
are you missing 2 backslashes from the URL?
should be: