UIToolBarを持つUIViewには、UiViewからこのビューへの遷移(UIViewAnimationTransitionFlipFromLeft)を開始するときに「戻る」ボタンが付いています。 なぜですか? plsは私IPhone UIToolBar UiBarButtonItem遷移の問題
おかげ
コードヘルプ:キャッシュされた遷移は仕事のやり方がiPhoneである
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:0.90];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
UIViewController *coming = nil;
UIViewController *going = nil;
UIViewAnimationTransition transition;
going = languageMenu;
coming = loadingmenu;
transition = UIViewAnimationTransitionFlipFromLeft;
[UIView setAnimationTransition: transition forView:self.view cache:YES];
[coming viewWillAppear:YES];
[going viewWillDisappear:YES];
[going.view removeFromSuperview];
[self.view insertSubview: coming.view atIndex:0];
[going viewDidDisappear:YES];
[coming viewDidAppear:YES];
[UIView commitAnimations];
コードを表示できますか? –
キャッシュを有効にしている場合:NO移行中にボタンが表示されますが、すべてが非常に遅いですか?何か案が ? –