我似乎无法让我的TTWebController
自动旋转。除了我的UITabBar
子类之外,我的shouldAutorotateToInterfaceOrientation
子类对我的所有视图都响应TTWebController
。即使我返回YES,该类也会响应但不会旋转。
这是我的TTWebController
子类的样子:
这就是我在UITabBar
子类中测试的内容:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
NSLog(@"shouldAutorotateToInterfaceOrientation: %@", [[TTNavigator navigator] visibleViewController]);
if ([[[TTNavigator navigator] visibleViewController] isKindOfClass:[TTWebController class]]) {
return YES;
}
// if you're in the "more..." tab and the topViewController is a TTWebController
// Note: this is required because of a Three20 bug where [[TTNavigator navigator] visibleViewController]
// doesn't work properly if you're in the "more..." tab
if ([self.moreNavigationController.topViewController isKindOfClass:[TTWebController class]]) {
return YES;
}
// Still here? Return YES only if portrait
return (interfaceOrientation == UIDeviceOrientationPortrait);
}
// Stefan