ビューにボタンがあり、次のビューをフリップビューで開く必要があります。
誰か助けてもらえますか?
ビューはビューコントローラによって管理されていると仮定します。フリップインするビューも同様です。
これを行う比較的簡単な方法は、presentModalViewController:animatedを使用して新しいビューを表示することです。
MyViewController* mvc = [[[MyViewController alloc] init] autorelease];
mvc.modalPresentationStyle = UIModalPresentationFullScreen;
mvc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController: mvc animated: YES];