There are four available positions UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight You use these constants in the statusBarOrientation property and the setStatusBarOrientation:animated: method. ...
13
votes
5answers
6k views
iOS: Device orientation on load
It seems that when my app loads, it does not know its current orientation:
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
if (orientation == UIDeviceOrientationPortrait) ...
12
votes
2answers
4k views
MPMoviePlayerController re-orientation portrait to landscape and back to portrait (iOS 4.1)
Since iOS 3.2 the MPMoviePlayerController class allows to embed a movie in the view hierarchy.
Now I'm facing this issue: I create my portrait view by placing an instance of MPMoviePlayerController. ...
9
votes
4answers
6k views
UIScrollView with pages enabled and device rotation/orientation changes (MADNESS)
I'm having a hard time getting this right.
I've got a UIScrollView, with paging enabled. It is managed by a view controller (MainViewController) and each page is managed by a PageViewController, its ...
8
votes
4answers
2k views
Disabling auto rotation for a UIView
My application is composed of a toolbar and an AVCaptureVideoPreviewLayer in a background UIView.
I'd like to see that toolbar rotate regarding the device orientation, so in my main ViewController, I ...
7
votes
4answers
986 views
How to resize a UIButton in a UITableView footer when orientation changes
I'm using two UIButtons in a footer of a UITableView (both subviews of a single UIView). I am not using a UITableViewCell because I wanted to skin the button so it looks like the red Delete button at ...
6
votes
1answer
171 views
UISplitViewController and orientation - iOS < 5.0
I am using a splitviewcontroller as the rootview of my application. I need to show the login and registration views as a modal view on top of the splitviewcontroller. When i try presenting login/reg ...
6
votes
1answer
4k views
Forcing UIInterfaceOrientation changes on iPhone
I'm strugging with getting an iPhone application which requires just about every push or pop in the Nav Controller Stack to change orientation.
Basically the first view is portrait, the second ...
5
votes
2answers
2k views
UISplitViewController delegate methods not called
I am using a UISplitViewController inside a UITabBarController with a plain UIViewController in the master pane of the split view and a UINavigationController in the detail pane, which itself contains ...
5
votes
9answers
6k views
How do I detect orientation on app launch for splash screen animation on iPad!
Hi I have an app and I have two *.pngs for default splash screen:
Default-Landscape.png
Default-Portrait.png
What I want is to animate this default splash screen away when my app is loaded and ready ...
5
votes
3answers
613 views
How do I detect an iPad's interfaceRotation at the start?
I'm having problems getting my iPad app to detect its interfaceOrientation in the first UIViewController I initialize (in code). In fact, if I trace for application.statusBarOrientation, that too ...
5
votes
2answers
4k views
iPad orientation change issue
My iPhone application is displaying some odd behavior when run on the iPad with respect to supporting orientation changes.
The app starts up with a view controller (call it view A for the sake of ...
4
votes
1answer
420 views
RootViewController animation transition, initial orientation is wrong
So I followed this thread: RootViewController Switch Transition Animation to transit the window.rootViewController from A to B to C. Code looks like this:
[UIView transitionWithView:self.window
...
4
votes
1answer
514 views
Tab bar interface orientation issue
I have added a custom tab bar. With tabs including more tab.
My First tab supports only portrait mode.
Second tab has all orientations.
Issue happens when selecting the second tab and keep it in ...
4
votes
1answer
183 views
problem in converting my project from portrait to landscape orientation
I have developed my project in portrait orientation, now I want to set my project orientation in landscape . I have set all xib file's orientation property as landscape and in .plist also I have set ...
4
votes
3answers
980 views
how to deal with UIDeviceOrientationFaceUp and UIDeviceOrientationFaceDown?
a noob question here.
i detect the orientation with:
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
all is fine and dandy and I reposition my text fields and labels ...
4
votes
4answers
3k views
How do I rotate custom splash screen on iOS?
My splash screen is working, but my app works on landscape mode, and the splash screen shows in the default portrait mode.
How can I start the app so that the splash screen rotates between landscape ...
4
votes
2answers
2k views
UISplitView - load different detailView's for each row in masterView
I'm using UISplitViewController for app on iPad. The first task was to show master and detail view in portrait mode. I have done this like that:
// It is possible to keep the Master View in portrait ...
3
votes
2answers
100 views
LandscapeOrientation on start of didload method in objective c
I've made an iPad application,
It works fine when I load my application in portrait mode for first time, but when I load my application in landscape mode for the first time, it takes the coordinates ...
3
votes
1answer
511 views
iPhone trigonometry for dealing with orientation
I am trying to write an augmented reality application. I am using the compass, gyroscope, and GPS coordinates to create overlays. Everything is working great, except for when the user leaves portrait ...
3
votes
1answer
224 views
UITabbar Application with different Orientations
i've got a iPad TabBarApplication. i subclassed the TabbarController to make the Application react to a orientation change:
@implementation frankenlandTabBarController
- ...
3
votes
3answers
323 views
in split view how to adjust the views to the screen when app launched in landscape mode
i am displaying master view and detail view in portrait mode of split view controller ,
i hav not used the pop up window to show master view as like most of hte ipad apps showing...
i am facing issue ...
2
votes
0answers
84 views
Why is my root view controller in the wrong orientation if the iPad is rotated while a modal view controller is displayed?
I have a simple view controller that is the root view controller in my application's UIWindow. At some point, I have the root view controller present a modal view controller. Nothing special.
...
2
votes
1answer
142 views
Forcing UIActionSheet to use a specific orientation
My app has one view controller that cannot change orientation. Think of it as a playing field that needs to stay fixed in place.
I now want to put up a UIActionSheet, but given the way the user is ...
2
votes
3answers
104 views
How to manage application when orientation changes?
I have an application in which I am changing screen orientation. But when I change orientation for the first screen and go to the next screen, the change does not persist.
Attached are images for ...
2
votes
1answer
104 views
iOS Support Multiple Rotations without Animation
I am recreating the Camera app interface for my iPhone app. When it is rotated on its side, instead of rotating the entire UI, I only rotate the icons, just like the normal camera app does. This has ...
2
votes
2answers
151 views
Detect iPhone orientation before loading tableview
So, I'm in a bit of a bind... According to this post, the orientation of the iPhone/iPad is portrait up to a point after which the "auto-rotate" function inside the controller tells iOS that the ...
2
votes
1answer
1k views
Is there a way to force the interface orientation to change in iPhone?
I know how to allow/disallow the orientation to rotate using
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
However, I have the problem now where the ...
2
votes
2answers
1k views
View rotation notifications: why didRotateFromInterfaceOrientation: doesn't get called?
I'm trying to detect any device orientation change so that I can update the views.
I want to update the views whether the orientation is portrait or landscape, so I implemented this method:
- ...
2
votes
1answer
501 views
Determining the Orientation of the screen rather than the orientation of the device
The [[UIDevice currentDevice] orientation] method returns a number of orientations beyond the portrait and landscape orientation. I am well aware of checking to see if the orientation returned is ...
2
votes
3answers
1k views
UIImageView Background Image and Rotation Help
In my iPad app I currently have a background image png of 1024x1024 pixels and set it using the following
UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage ...
2
votes
3answers
327 views
Keeping controls in landscape mode but allowing uitabbar to switch
I have a UITabBar switches places when the iphone changes orientation and that works fine, but I want the controls within the view of the first tab to stay static regardless of the position of the ...
2
votes
1answer
631 views
changing subviews when rotating on ios
I need a view controller(on ipad) to share two modes, one in portrait and one in landscape. Actually, I pretty much want to mimic the functionality of UISplitViewController, but I want to be able to ...
2
votes
1answer
287 views
interfaceorientation remains same after removeFromSuperview and again addSubview
I am switching between views using view animations, its works but I am having an issue with interface orientation.
I have two views on window.
authenticationViewCont
mainViewCont
Both have a ...
2
votes
1answer
505 views
Status Bar orientation problems
I'm having this issue with the application status bar on My iPad app.
I'm using a UINavigationController. The root view controller allows all rotations by returning YES in the shoulAutoRotate method. ...
2
votes
3answers
2k views
Support landscape for only one view in UINavigationController
I have a navigation controller which have a few view controllers. I need to support all orientations for all view controllers except one special view controller which only supports landscape. This ...
2
votes
1answer
165 views
UIInterfaceOrientation rotate along with the Hearder
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.
2
votes
2answers
189 views
ipad 3.2.2 loading in landscape
I changed the properties in info.plist to support orientation in landscape thereby the app opens in landscape mode as well. The problem which i face is like when the app loads in landscape mode the ...
2
votes
3answers
2k views
Enable iPhone Interface Orientation
I'm trying to get my application to rotate the interface when the device itself is rotated, but I can't get it right.
I have added the supported interfaces in the plist info file and returned yes for ...
2
votes
1answer
383 views
How to hide UITabbar and UINavigationBar at the top when UIView changes to LandscapeOrientation?
I am using tabbarcontroller application with 4 tabs, each tab integrate with UInvaigationcontroller, when get in to detail page from first page, showing html text in UIWebview. when you do orientation ...
2
votes
1answer
341 views
Changing view with different orientation
Here's my issue: My app has a toolbar where you can change between views. The main one or at least the one on launch is in on landscape mode, then if you go to any other view is in portrait. The ...
2
votes
0answers
447 views
Three20, different images for portrait and landscape orientation possible?
I am using three20 to present a photo essay of a story I made after the February earthquake in Chile. I would like the app to display portrait type images when iPad device is in portrait orientation ...
2
votes
3answers
963 views
How do you force an orientation change in an Android Instrumentation test?
I'm writing some acceptance tests for an application using the ActivityInstrumentationTestCase2 class. I want to cause an orientation change from within the test to ensure that a number of things ...
2
votes
1answer
515 views
Any way to trigger interface orientation check?
My app is going from a flipside view (only one orientation) to its main view (can have any sort of orientation. When I go from flipside back to main view, the main view's orientation is not checked ...
1
vote
1answer
66 views
How do I get my iPhone app to start in Landscape mode?
My app is fixed to landscape mode, yet during viewDidLoad() and even viewWillAppear(), the following portrait dimensions still return:
self.view.bounds.size.width = 320.00
...
1
vote
0answers
49 views
UIModalViewController and UIImagePickerController rotation issue
This is the situation:
I've a viewController that was presented in this way:
AddAttachmentPhotoVideoViewController * addAttachment = [[AddAttachmentPhotoVideoViewController alloc]initWithNibName:nil ...
1
vote
1answer
61 views
Detecting initial device orientation on iOS in Safari
I know how to detect device orientation change on iOS in Safari, but I cannot fathom out how to detect initial orientation when my page loads.
It is simple to detect if the device is in portrait or ...
1
vote
0answers
61 views
iPad app force rotation
I have a simple navigation app that has 95% of all views displayed in landscape mode. With the one view that makes sense to only show in Portrait mode i have inserted the following code in:
- ...
1
vote
1answer
33 views
Resizing multiple image views with orientation
I'm in the process of creating a universal iOS app that, amongst other functions, allows the user to spawn UIImageViews on touch.
The issue that I'm having is that when I rotate the device, the views ...
1
vote
2answers
45 views
how to set Orientation after launch on iPhone
i Will like to know how to auto rotate iphone after launch.
my launch image is in portraits but the app itself are in landscape.
after launch the orientation are still in portraits instead of auto ...
1
vote
2answers
55 views
Bad UIScrollView autorotation behavior
I have this view controller with the following hierarchy:
I am just trying to load a photo and be able to scroll it and zoom it & autorotate it. Everything works well except I am getting some ...