landscape

iPhone UIImagePicker Camera in Landscape Orientation

Is there any good way to set UIImagePicker to landscape orientation? I tried to call setStatusBarOrientation after presentModalViewController like following, [self presentModalViewController:picker animated:YES]; [[UIApplication sharedApplication] setStatusBarOrientation: UIInterfaceOrientationLandscapeRight animated: NO ]; However, ...

Second view in IB

I'm writing a game, in which I will be swapping out views. I have a loading screen which comes out in LandscapeRight mode, which is what I want. Then I want all subsequent views to load in Landscape. What ends up happening is that they load in Portrait (even though in IB I have them edited as Landscape views and the size dimensions ar...

Problem with UIViewController orientation

I'm writing EAGLView - based application (game) and need to add UIViewController with UIWebView in landscape mode. What I done: Specified UIInterfaceOrientationLandscapeRight for UIInterfaceOrientation in the Info.plist Call [application setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO] in the applicationDidFi...

iphone landscape mode slow

The iphone app I am developing in landscape mode is seriously chugging. I put it in portrait for comparison and it appears to run much smoother in that orientation. I am not doing what I'd think is process intensive: a map view, some buttons, some labels, and some quartz drawing, yet some basic quartz animation seriously slows down rea...

In-call status bar not working with landscape views

My application runs exclusively in landscape interface orientation. Testing on the iPhone Simulator, showed that the in-call status bar isn't working properly; only the top half of the status bar appears and clicking it does nothing. When I changed the application to run in portrait mode, the in-call status bar started working as expec...

UIImagePickerController in Landscape

Hi Everyone: I have been searching for an answer to this, but cannot come up with anything. Apparently, iPhone SDK 3.0 made it possible that UIImagePickerController can be displayed in landscape mode - but I am not finding any method that will allow this. I would think that if the application is in landscape by default it would automa...

View positioned incorrectly when set to landscape mode

Hello, My iPhone application is navigation-based and contains a lot of portrait-only views and one landscape-only view for viewing images. So I'd like to force this landscape-only view to automatically rotate to lanscape even if device is positioned in portrait mode. So here is what I'w done in that view's controller: // Override to a...

iPhone Rotation ... won't rotate .. plz help

My view hierarchy looks like this: tab bar -> navigation bar -> table view -> view 1 -> view 2 (UIWebView) How can I rotate view 2 so it can be displayed in both landscape & portrait mode? ...

How do I specify different layouts for portrait and landscape orientations?

I've seen references to being able to specify two separate layout xml files for an activity, one for Portrait and one for Landscape. I've not been to find any information on how to do that though. How do I specify for each activity which xml file is it's portrait layout and which is the Landscape layout? Is it also possible to speci...

Rotate UIPickerView, Possible?

Is there a way to rotate an UIPickerView? ...

How can change the Portrait mode to Landscape mode and vice versa in Tab Bar view controller?

In my application, I am using Tab bar controller.How to change from Portrait mode to Landscape mode and vice versa? I can change mode with out Tab bar controller by just returning YES in shouldAutorotateToInterfaceOrientation method but when a view consist tab bar it is not working.Please, provide a solution. I am thankful to you? ...

How to rotate an Info Button with the view?

Hey, I'm just trying to write a view based Application, which only uses the landscape Orientation. Using this Code: application.statusBarOrientation = UIInterfaceOrientationLandscapeRight; in the ApplicationDidFinishedLaunching Method the Application starts in landscape orientation. The problem is, that if I create a landscape view ...

Question about using landscape mode with custom images on the iPhone/iPad

Hey I just had a simple question about implementing landscape mode for an app, particularly running on the iPad (but I am sure the concept holds true for the iPhone). I have a custom background image that I am wanting to use for my root view. I designed the image so that it fits the iPad screen size for portrait mode. Do I need to design...

Change View on only one Tab in Tabbar-Application (Landscape-Portrait)?

How can I change the view when rotating the iphone (change nib's). But it should only happens in one single tab! I tried it with: - (void)viewDidLoad { LandscapeViewController *viewController = [[LandscapeViewController alloc] initWithNibName:@"LandscapeView" bundle:nil]; self.landscapeViewController = viewControlle...

Weird problem, with ghostscript and pdf files.

Hello, am using ghostscript to create pdf file from postscript file. My PS file, doesn't have orientation instructions, so when I want to create landscape pdf file, I'm using ghostscript to rotate the page. The problem is, that ghostscript rotates only the first page, and when my pdf file is more than 1 page, the others, are not rotated ...

launch/restrict iphone inapp mail in landscape mode

Hi everyone, My app is landscape. I would like to launch the in-app email composer in landscape and restrict it as such. Can anyone advise how to do this? I created a view controller with the proper auto-rotate settings to keep my app in landscape but am unsure how to tell the MFMailComposeViewController to please launch in landscape ...

change the portrait to landscape and vice versa

Hi, I am new to iphone. I want change the view from portrait to landscape and vise versa depends upon device view position. In my app, I am using different kinds views, view controllers, table view controller, web view and so on. For achieve that where i want to put the shouldAutorotateToInterfaceOrientation method? is it necessary to ...

Webview resizes automatically to portrait and landscape view in iphone

Hi I am new to iphone development.In my app, i want to display the web view in device with c portrait Orientation.It should also support landscape orientation. I used the below method but there is no expected output. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrien...

iPhone landscape UIView slide transition

Hi, My app uses a landscape only view and requires the user to answer a series of questions using a UISlider to select their answer before clicking "Next" to move to the next question. The user can't go back to previous questions so only has one "direction" of travel. Once the final question is answered the app will return them to the...

Creating landscape page-spanning tables in LaTeX

I have a large table I want to include in a LaTeX document. It is too wide for a page, so I want to rotate it 90 degrees and have it landscape. Then it will be too tall for the page, so I want it to span multiple pages. I have managed to get it landscape with: \begin{landscape} \begin{table}[htdp] \begin{center} \begin{tabular}{c|l|c|l...