I want to use cover flow in portrait mode in iPhone SDK, can it is possible ?

Please suggest me.

Thanks.

有帮助吗?

解决方案

Use this

and for orientation use below code

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

    return NO;
}

in "FlowCoverViewController.m"

Thanks

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top