I am building an app that would run a website through my app. Basically the webView. I had no problems so far since the last xCode update. It basically runs with no errors but it does not work on iOs 6 simulator or device.
.h fle:
@interface ViewController : UIViewController{
IBOutlet UIWebView *nView;
}
.m file:
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL * myURL = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
[nView loadRequest:myRequest];
}
If anyone can help I would be grateful. Thank you