我的UINavigationController堆栈中有两个UIViewControllers,我需要为第一个viewController单独支持纵向和横向方向,对于第二个viewController,我需要单独支持肖像支持而不是横向支持。
在ViewController1中,我实现了以下方法,
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[self changeFrames:toInterfaceOrientation]; //changing frames for orientation accordingly
}
并在ViewController2中:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (BOOL)shouldAutorotate
{
return NO;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
同样在项目目标中,我已经设置为支持所有4个方向。
寻找任何帮助来解决上述问题。 在此先感谢。