Вопрос

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