我正在尝试在 MasterViewController 出现/消失时对其进行动画处理。为了隐藏我的主人,我shouldHideViewController
在我的 UISplitViewController 类中使用。
-(BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation {
return hiddenMaster;
}
我的问题是:在shouldHideViewController
返回 YES 或 NO 后是否调用了任何方法?似乎viewWillDisappear
或viewDidDisappear
两者都没有被调用。
或者,更一般地说,有什么方法可以在我的 masterView 出现/消失时对其进行动画处理?
谢谢!