내가이보기에있는 UIView에서 전환 (UIViewAnimationTransitionFlipFromLeft를) 시작할 때 내가 "뒤로"버튼과 UIToolBar와의 UIView가이 버튼은 전환 왜의 끝에 나타납니다? Pls는 저에게는 아이폰 UIToolBar UiBarButtonItem 전환 문제
감사
도움말코드 :
[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];
코드를 표시 할 수 있습니까? –
캐시를 활성화 한 경우 : 전환 중에 버튼이 표시되지만 모두 매우 느립니다? 어떤 아이디어? –