我尝试使用以下代码来确定shouldAutoRotate ... fn
中的当前视图边界UIViewController *temp1 = [appDelegate.splitViewController.viewControllers objectAtIndex:1];
float screenwidth = temp1.view.bounds.size.width;
float screenheight = temp1.view.bounds.size.height;
实际上当你从一种模式旋转到另一种模式时,它提供了旧的绑定值,它们是新的绑定值。?
任何人都知道如何实现它?
答案 0 :(得分:1)
在-didRotateFromInterfaceOrientation:
method。
-shouldAutorotateToInterfaceOrientation:
只应用于确定目标方向是否可接受,而不是其他任何内容。