autorotate

iPad Modal View rotates parentViewController View

When the application is in landscape mode (which I plan to force), displaying a modal view causes the parent view to rotate to portrait mode. If I set the return value of shouldAutoRotateToInterfaceOrientation to NO, the parent does not rotate, however the modal then slides in from the side and displays sideways. Below is the code that r...

Showing picutre in lanscape Mode on the whole screen

Hello People, i implemented a small code to show pictures, but why is the picture on Portrait Mode optimized to the iPhone screen and NOT optimized in Landscape Mode could you please help me, here is the code: -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported or...

"refresh" view on device rotation

Hi there I have my view set up in viewDidLoad. All the different frames and such of the subviews have been defined relative to self.view. Therefore it doesn't matter what size self.view is the subviews will always shrink or expand to fit (as it were). So when I rotate my device I want the view to rotate (easy enough with shouldAutoRota...

UINavigationController Toolbar and device orientation (rotation)

So I have this iPhone app with a nested setup like this: [RootViewController]->[UITabBarController]->[UINavigationController]->[subViewControllers]. Everything is built programmatically, not in Interface Builder. I'm simply trying to support all device orientations. All of my AutoResizing masks are set up and everything rotates and expa...

UIScrollView Rotation

I have a scrollview that automatically generates a series of subviews containing imageviews. The concept is that it's pretty much a custom PDF style reader, where each page is loaded in to an imageview as an image. There are three "layers" - the outer UIScrollView, the automatically generated subViews and the imageview inside the subview...

UINavigationBar root view doesn't rotate into landscape.

I have an application with a main menu screen consisting of a few buttons on link to other view controllers using a navigation bar which are consist of web views. In each of my view controllers including the root I have the following method to auto-rotate: (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)x { retur...

Autorotation on a gallery - willAnimateRotation... isn't invoked.

I'm using this. I've put this in where the images are added: self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; I've put these overrides in SlideShowViewController: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{ return YES; } -(void)willAnima...

issue with rotation and uilabels with size set using NSString's sizeWithFont...

I have a few UILabels in my view with their height set using sizeWithFont:. I set the autoreszingMask to flexible width and height, however on rotate the width changes (am assuming because self.view's width changes and its set with a width relative to self.view) but the height of it doesn't change to fit the content again. This results ...

JQuery Rotating Text

Hi, I have some text that i need to rotate, this is what i have now: > <div id="facts"> > <blockquote class="fact visible"> > xxx > </blockquote> > <blockquote class="fact"> > yyy > </blockquote> > <blockquote class="fact"> > zzz > </blockquote> > ...