我在实现设备方向方法时遇到问题。我正在实施它
跟随
-(BOOL)shouldAutorotate{
return TRUE;
}
-(NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskAll;
}
在 tha appdelegate 我正在做
self.window.rootViewController = self.splitViewController;
我希望我的应用程序适用于所有方向。但是任何方向都不起作用
正确。有什么帮助吗?我的应用程序是针对 IOS 4.3 的,但它也应该适用于 IOS 5 和 6。