如何在Ipad App的拆分视图中确定当前视图边界?

时间:2010-06-09 12:30:52

标签: iphone objective-c ipad

我尝试使用以下代码来确定shouldAutoRotate ... fn

中的当前视图边界
UIViewController *temp1 = [appDelegate.splitViewController.viewControllers objectAtIndex:1];
float   screenwidth = temp1.view.bounds.size.width;
float   screenheight = temp1.view.bounds.size.height;
实际上当你从一种模式旋转到另一种模式时,它提供了旧的绑定值,它们是新的绑定值。? 任何人都知道如何实现它?

1 个答案:

答案 0 :(得分:1)

-didRotateFromInterfaceOrientation: method

中实施此功能

-shouldAutorotateToInterfaceOrientation:只应用于确定目标方向是否可接受,而不是其他任何内容。