Webview resizes automatically to portrait and landscape view in iphone

前端 未结 2 1656
心在旅途
心在旅途 2020-12-10 07:28

I am new to iphone development.In my app, i want to display the web view in device with c portrait Orientation.It should also support landscape orientation. I used the bel

2条回答
  •  独厮守ぢ
    2020-12-10 07:44

    If you want to support any orientation then just return YES.

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

提交回复
热议问题