我有一個TabbarController與不同的ViewControllers。 其中一些ViewController應該自動旋轉,並且一個ViewController只能在PORTRAIT中呈現。 我填充的TabBar以下程序:UIViewController旋轉問題
ChartThemeViewController *chartViewController = [[ChartThemeViewController alloc]
initWithTheme:chartThemeDict];
UINavigationController *theNavigationController = [[UINavigationController alloc]
initWithRootViewController:chartViewController];
[chartViewController release];
[localViewControllersArray addObject:theNavigationController];
[theNavigationController release];
tabBarController.viewControllers = localViewControllersArray;
的ChartThemeViewController是ThemeViewController的子類。 ThemeViewController是UIViewController的子類。
如果我在ThemeViewController的子類中重寫'shouldAutorotateToInterfaceOrientation',並在所有子類中返回YES,並在ChartThemeViewController中返回NO ...它碰巧所有ViewController都不自動旋轉。
mmmmhhh ......希望你能明白這一點...
我怎樣才能解決這個問題?
許多感謝 延
謝謝你這個答案。 – xnz 2010-09-13 09:16:45