I've been trying to implement UIWebView into my application for a while now but when I do my application crashes upon startup. My code is:
-(void)viewDidLoad {
[super viewDidLoad];
NSString *urlAdress=@"http://www.facebook.com";
NSURL *url = [NSURL URLWithString:urlAdress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
The Debugger says Thread 1: Stopped at breakpoint 4
