如果通过单击按钮(执行操作),我需要以某种方式检查代码,它正在切换视图控制器的视图
我在用
if ([currentViewController.view respondsToSelector:@selector(setAnimationTransition:forView:cache:)])
但这个看起来不像工作
通常此代码用于切换视图
[UIView beginAnimations:Nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self cache:YES];
[mainView removeFromSuperview];
[self addSubview:infoView];
[UIView commitAnimations];