1
私のストーリーボードではNavigation Controllerと一緒に作業していますが、シミュレータを横置きにすると、アプリケーションは常にポートレート形式になります。どうして? =([iPhone]
私のストーリーボードではNavigation Controllerと一緒に作業していますが、シミュレータを横置きにすると、アプリケーションは常にポートレート形式になります。どうして? =([iPhone]
変更
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
また
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
プロジェクト設定で確認するために、あなたは風景を許可するように設定 'デバイスの向きサポート' をしている。
が動作しない!:( – GeraldoBastos
@GeraldoBastos設定でランドスケープが有効になっていますか?上記は、デバイスが任意の位置に回転するといつでもトリガーされます。肖像画を上下逆さまにする。 – Bot
はい!しかし、仕事はありません。 – GeraldoBastos