Hey folks!
Iam new on ios development and since a few days iam working on my first app with TabBar.
I have four TabBarItems and one of each BarItem should load the *.xib with the UIWebView.
I have do it this way:
- New Project in xcode (window based application)
- Created four new UIViewController Subclasses with the *.xib files
- in my ProjectAppDelegate.h
IBOutlet UIWebView *webView_google; and the @property for that.
- in the *.m file @synthesize the
webView_google
and also:
Code:
- (void)awakeFromNib {
[deliveryPortal loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.de"]]];
}
All TabBarItems and their *.xib files works fine. Just the WebView doesn't show the Page. The page ist blank..
Is there any part that i am missing?
Can anybody help and give me tips and recommendation?
thx,
brush51