0

我正在将我的应用程序转换为 ios6,但我遇到了旋转问题。有人可以帮我旋转设备时会调用哪些方法吗

4

4 回答 4

0

- (BOOL) shouldAutorotate -(NSUInteger)supportedInterfaceOrientations

这些是添加到 iOS 6 的新功能。

于 2012-11-19T06:07:36.703 回答
0
 -(NSUInteger)supportedInterfaceOrientations

{
    return UIInterfaceOrientationMaskAll;
}

-(void)viewWillLayoutSubviews
{
if([self interfaceOrientation] == UIInterfaceOrientationPortrait||[self interfaceOrientation] ==UIInterfaceOrientationPortraitUpsideDown)
    {
     //set the frames here
    }
    else if ([self interfaceOrientation] == UIInterfaceOrientationLandscapeLeft||[self interfaceOrientation] == UIInterfaceOrientationLandscapeRight)
    {
      //set the frames here
    }
}

最好这样做,每次更改设备方向时都会调用上述方法。

于 2012-11-19T06:48:58.943 回答
0
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation) toInterfaceOrientation duration:(NSTimeInterval)duration 
{
    [self doLayoutForOrientation:toInterfaceOrientation]; 
}


- (void)doLayoutForOrientation:(UIInterfaceOrientation)orientation { 
if (UIInterfaceOrientationIsPortrait(orientation)) 
{
//set the frames here
}
else 
{
//set the frames here
} 
}

这些是 ios 6 中的新方法,您可以在其中根据方向设置框架。希望它对你有用。

于 2012-11-20T05:24:46.313 回答
0

使用这些方法处理旋转

-(BOOL) shouldAutorotate
{
    return NO;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

如果旋转中的某些视图并且您不希望 UIImagePickerController 之类的,则只需创建一个子类并覆盖第一个方法。

于 2012-11-22T11:29:16.727 回答