0

私はこの機能が実装されている私のビューコントローラで:インターフェイスの向きだけ

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft); 
} 

が、私のViewControllerは、その向きを切り替えることはありません。私は何が欠けていますか?おかげで私はそれを行う

+0

その行にブレークポイントを設定した場合、これまでにヒットしますか? – slf

答えて

0

あなたは何をしているか、基本的には
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 
    if (interfaceOrientation == UIDeviceOrientationLandscapeLeft || interfaceOrientation == UIDeviceOrientationLandscapeRight) 
    { 
     return YES; 
    } 
    return NO; 
} 

。 InterfaceBuilderでランドスケープモードについてのあなたの意見も確認してください。

+0

返事をありがとう。私はこれを試みたが動作しません。私はペン先を持っていない、すべてがプログラムで行われます。 – sumderungHAY

関連する問題