如何锁定设备上的更改方向?
我试着用
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationLandscapeRight;
}
还有这个
- (void)viewDidAppear:(BOOL)animated
{
[self shouldAutorotateToInterfaceOrientation: UIInterfaceOrientationLandscapeRight];
[super viewDidAppear:animated];
}
但是当我使用设备时没有任何效果。当应用程序在模拟器上运行时,它工作得很好。
模拟器有 iOS 6 和设备 5.1.1。我做错了什么?