How can use cover flow in portrait mode in iPhone SDK?
I want to use cover flow in portrait mode in iPhone SDK, can it is possi开发者_高级运维ble ?
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
精彩评论