0
私はアプリを持っている、私はiphoneの時計回りの方向を回転させるとき私は私のレポートUIViewcontrollerだけのランドスケープモードを表示する必要があります。他のUIViewcontrollerはポートレートモードです。私は時計の方向を回転させるときにランドスケープモードを設定する方法
OtherUIviewController
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
レポートのUIViewController
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
しかし、どのようにそれを時計回りの方向を確認すること。任意のサンプル//
私はすでにこれを試したので、これは動作しません。私は、賢明な方向をclcokする必要があり、シミュレータをチェックインする方法。私は右回転でシミュレータをチェックしています。これは正しい方法です。 anyotherway – SOF
あなたは何をしようとしているのか分かりません。 – BastiBen
iphoneシミュレータを回転するだけで、ビューコントローラは回転しません。私の見解でシミュレータをチェックインする方法。 – SOF