私のアプリケーションで怒っている問題があります。私のアプリケーションでは、シミュレータをランドスケープモードに回転しますが、私の下の機能では、私は縦向きになります。向きが間違っています
ここで問題は何ですか?私を助けてください。
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
{
NSLog(@" portrait orientation");
}
else
{
NSLog(@"Landscape");
}
return YES;
}
使用しているsdkとxcodeのバージョンを更新してください。同じコードを実行すると、期待される結果が得られます。おそらくあなたのxcodeにはいくつかの問題があります。 –