0
我有和該應用程序中的應用程序在potrait模式下運行,當我轉到下一個wiew時,我必須在橫向模式下更改設備方向。有什麼辦法嗎?如何強制使設備處於橫向模式
我有和該應用程序中的應用程序在potrait模式下運行,當我轉到下一個wiew時,我必須在橫向模式下更改設備方向。有什麼辦法嗎?如何強制使設備處於橫向模式
編號[UIDevice setOrientation:]
這樣做,但它是一個私人API。
把下面的代碼在你的控制器類有UIViewControllers之間的不同取向,
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
你也可以低於其觀點之間不同的方向嘗試。
[[UIDevice currentDevice] performSelector:@selector(setOrientation:) withObject:(id)UIInterfaceOrientationLandscapeRight];