My iPhone app is design to support portrait orientation only, except one view controller that present photos, and support landscape mode as well.
So overall my project
May be u should try
- (void)viewWillAppear:(BOOL)animated { [self shouldAutorotateToInterfaceOrientation: UIInterfaceOrientationLandscapeRight]; [super viewWillAppear:animated]; }
on your view?