Modal View Controller、Docsを使用してみてください
オンにするdidFinishLaunchingWithOptions()
か、viewWillAppear()
次のようなことを試してください。
YourViewController *viewController = [[YourViewController alloc] initWithNibName:@"YourViewController" bundle:nil];
viewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
viewController.modalPresentationStyle = UIModalPresentationFormSheet;
//Present as Model view controller
["presentedViewController" presentModalViewController:viewController animated:YES];
//release it After presenting to it
[viewController release];
次に、それを削除するには、次の呼び出しを呼び出します:dismissModalViewControllerAnimated:
(docs)