How to autorotate from portrait to landscape mode?

后端 未结 3 944
一生所求
一生所求 2021-01-28 23:00

How can I autorotate an image from portrait to landscape mode on the IPhone?

3条回答
  •  清酒与你
    2021-01-28 23:36

    You have to implement shouldAutorotateToInterfaceOrientation method in your controller, like this

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

提交回复
热议问题