How to set Portrait mode when it's in landscape?

139 Views Asked by At

I am making an application which supports portrait, landscape left, landscape right interface orientiations. However in my application, there are some view controllers for which I want to have only portrait. It means that, when you rotate this view controller, no changing should happen. I try to describe in this image. image

Please help me, It's important to my project :)

2

There are 2 best solutions below

1
On

Please go through my answer in the following link.

Xcode iphone orientation support for certain views

I think it would help you..

2
On

Try this::

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if (interfaceOrientation==UIInterfaceOrientationPortrait)
    {
        return YES; 
    }
    return NO;
}

Hope it Helps!!