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

时间:2011-05-19 07:26:23

标签: iphone ios ios4 coverflow portrait

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

请建议我。

感谢。

1 个答案:

答案 0 :(得分:0)

使用this

以及代码

下方的使用方向
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    //return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
//          (interfaceOrientation == UIInterfaceOrientationLandscapeRight));

    return NO;
}
“FlowCoverViewController.m”中的

由于