When I rotate the simulator from portrait to landscape, the header is not rotating. I want to rotate the header along with the view rotation using UIInterfaceOrientation.enter image description here

link|improve this question

58% accept rate
Anyone please give me a guidance to do this. – kanmani Feb 15 '11 at 8:49
feedback

1 Answer

up vote 1 down vote accepted

@renuga i think you need to implement this method in your view controller.

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

go to IB and click on the arrow shown below.

enter image description here

and there you need to adjust the position of your tab bar

link|improve this answer
@robin:Thank You so much for your quick response.The above code rotates the statusbar(only) in according to the orientation.It's not rotate the header i mean(it's may be navigation bar or Toolbar). – kanmani Feb 15 '11 at 8:05
it will rotate the all the UIView objects in the IB can you show your IB snap shot – Robin Feb 15 '11 at 8:58
sure i'l show u.. – kanmani Feb 15 '11 at 9:11
Please refer my question i have edit the question and add my InterfaceBuilder screenshot.Thank You – kanmani Feb 15 '11 at 9:21
@robin:Hai robin when i rotate the simulator from portrait(in portrait mode it shows Toolbar)to Landscape mode it doesn't shows the Toolbar.I don't know why it comes like this.Please help me to do this.THank You – kanmani Feb 15 '11 at 9:43
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.