문제

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