カスタムカメラオーバーレイの向きを強制しようとしていますが、うまく機能させるのに苦労しています。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
しかし、Xcode がバージョン 4.5 に更新されて以来、それはもう機能していないようです。
また、上記がベストプラクティスではないことを理解しているので、単一のビューで水平方向を強制する正しい方法は何でしょうか?