up vote 0 down vote favorite
2
share [g+] share [fb]

Root view is a UIImage View, it has subviews, those have subviews. My root view will open in landscape i have set both project properties in the project's .plist and have integrated application.statusBarOreintation in applicationDidFinishLaunching and verified that it works.

But all of my subviews are appearing in portrait. How do I change this on my subviews?

Thanks // :)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Do you have a viewcontroller? What is your shouldAutorotateToInterfaceOrientation returning?

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
    		(interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}

Without a viewcontroller, you will have to apply a transform to rotate each view you load.

link|improve this answer
Thanks, that's awesome :) – Spanky Sep 5 '09 at 3:08
feedback

Your Answer

 
or
required, but never shown

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