AppDelegateで、次を使用します。
ActivitiesViewController *acController = [[ActivitiesViewController alloc] initWithNibName:@"ActivitiesView" bundle:[NSBundle mainBundle]];
UINavigationController *acNavController = [[UINavigationController alloc] initWithRootViewController:acController];
[self.tabBarController setSelectedIndex:0];
[self.tabBarController setSelectedViewController:acNavController];
TabBarControllerのビューを切り替えるには。その結果、ウィンドウの上部が閉じます。
代替テキストhttp://img.skitch.com/20090718-tpgya2nt4yeadacgs54dh8syp2.png
ビューを正しい位置にするにはどうすればよいですか?
よろしく