ユーティリティアプリケーションの基本的なコードはすでにありますが、アプリケーションが2番目のビューに反転するときに、反転したビューの下部にのみを追加したいのですがtabbarItem
、ビューが元のビューに反転した場合、タブバーは追加されません。現れます。この機能を追加するにはどうすればよいですか。ちなみに、シミュレータ4.1を使用しています。ありがとうございます。
これは、ボタンがクリックされたときに反転した側を示すコードです。代わりに、タブバーコントローラーに反転させたいと思います。
- (IBAction)showInfo:(id)sender {
FlipsideViewController *controller = [[FlipsideViewController alloc] initWithNibName:@"FlipsideView" bundle:nil];
controller.delegate = self;
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:controller animated:YES];
[controller release];
}