如何在iPhone SDK中在纵向模式下使用封面流



我想在iPhone SDK中以纵向模式使用封面流,可以吗?

请建议我。

谢谢。

使用这个

对于方向,请使用以下代码

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    //return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
//          (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
    return NO;
}

在"FlowCoverViewController.m"中

谢谢

最新更新