Hi everyone, I have a tab based application. In one view, I have TTTabStrip with different TTTabItems. Everything works (loading regular UIViewControllers), except loading UIWebViews.
In the application delegate, I configured the display URL:
TTNavigator* navigator = [TTNavigator navigator]; navigator.supportsShakeToReload = YES; navigator.persistenceMode = TTNavigatorPersistenceModeAll; TTURLMap* map = navigator.URLMap; [map from:@"*" toViewController:[TTWebController class]];
The control controller contains one UIWebView. I see (NSLog) that loadView-Method is being called, but the URL does not open:
- (void) loadView { CGRect applicationFrame = [UIScreen mainScreen].applicationFrame; self.view = [[[UIView alloc] initWithFrame:applicationFrame] autorelease];
For example, I can change the background of the UIWebView to black.
How to load Google into web view under TTTabStrip?
Thank you very much.
source share