Question

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

Please suggest me.

Thanks.

Was it helpful?

Solution

Use this

and for orientation use below code

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

    return NO;
}

in "FlowCoverViewController.m"

Thanks

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top