I have created a simple tabbed application and added the WebKit.framework and on the first view I added the following inside of viewDidLoad but nothing shows.
- (void)viewDidLoad {
[super viewDidLoad];
CGRect vRect = self.view.bounds;
self.webView = [[WKWebView alloc] initWithFrame:vRect configuration:[WKWebViewConfiguration new]];
self.webView.navigationDelegate = self;
self.webView.allowsBackForwardNavigationGestures = TRUE;
[self.webView setAutoresizingMask:UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
NSURL* __url = [NSURL URLWithString:@"http:/
NSURLRequest* __urlRequest = [NSURLRequest requestWithURL:__url];
[self.webView loadRequest:__urlRequest];
[self.view addSubview:self.webView];
}