ionic 3 screen orientation issue in ios application

Viewed 1932

I want to lock one of my page to landscape mode it works perfect in android but not in Ios i can not rotate to landscape it still in portrait mode. do i have to change anything in Xcode settings. i do not know what happened exactly.

I have used something like this

ionViewDidLoad() {
 this.screenOrientation.lock('landscape');
}
3 Answers

this.ScreenOrientation.lock( this.ScreenOrientation.ORIENTATIONS.LANDSCAPE)

Related