私はinfolightボタンに以下のコードを使用しました( https://stackoverflow.com/users/630145/ankit-bhardwajに感謝します)
// This will create ur info button in center.
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
UIBarButtonItem *infoButtonItem = [[UIBarButtonItem alloc] initWithCustomView:infoButton];
[infoButton addTarget:self action:@selector(goToRechercherView) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *flexibleLeft = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
toolBar.items = [NSArray arrayWithObjects:flexibleLeft,infoButtonItem,flexibleLeft, nil];
アニメーションの場合、これはどのように反転するかという部分がありますが、同じページに反転します。
//This is for swipe animation. add your view inside.
-(void)goToRechercherView{
[UIView beginAnimations:@"flipview" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft
forView:self.view cache:YES];
[UIView commitAnimations];
そこで、flipviewcontroller.h .m .xibファイルをプロジェクトに追加し、そのxib/pageをflipanimationで開きたいと思います。
誰かが私にそれの方法を提案します。