我想在我的應用程序中只將我的一個視圖右轉。 我的所有其他視圖都處於肖像模式。以前的視圖處於肖像模式。我將橫向視圖推向縱向視圖。我如何正確地做到這一點?
從縱向模式到iOS5,iOS6的橫向模式
:
//Orientation
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
// New Autorotation support
-(BOOL)shouldAutorotate {
return YES;
}
-(NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscapeRight;
}
這種方法在iOS6的 – Leena
的Leena不贊成你是對的 –