In a given event handler (not the "shouldAutorotateToInterfaceOrientation" method) how do I detect the current iPad orientation? I have a text field I have to animate up (when keyboard appears) in the Landscape view, but not in the portrait view and want to know which orientation I'm in to see if the animation is necessary.
|
|
|
Orientation information isn't very consistent, and there are several approaches. If in a view controller, you can use the
Alternatively, you can request to receive orientation change notifications:
Some people also like to check the status bar orientation:
|
|||||||||||||||||||
|
|
I think
is not really reliable. Sometimes it works, sometimes not... In my apps, I use
and it works great! |
|||||||||
|
|
One of:
|
|||
|
|
|
I found a trick to solve the FaceUp orientation issue!!! Delay the orientation check till AFTER the app has started running, then set variables, view sizes, etc.!!!
You can addSubviews, position elements, etc. in the 'setStuff' function ... anything that would initially depend on the orientation!!! :D -Chris Allinson |
|||||||||
|
|
You can achieve this by two ways: 1- By using the following method: **Put the following line in the
then put this method inside your class
The above method will check the orientation when the device will be rotated 2- The second way is by inserting the following notification inside
then put the following method inside your class
The above method will check the orientation of the status bar of the ipad or iPhone and according to it you make do your animation in the required orientation. |
|||
|
|
|
|
||||
|
|
|
I don't know why, but every time my app starts, the first 4 are right, but subsequently I get the opposite orientation. I use a static variable to count this, then have a BOOL to flip how I manually send this to subviews. So while I'm not adding a new stand-alone answer, I'm saying use the above and keep this in mind. Note: I'm receiving the status bar orientation, as it's the only thing that gets called when the app starts and is "right enough" to help me move stuff. The main problem with using this is the views being lazily loaded. Be sure to call the view property of your contained and subviews "Before" you set their positions in response to their orientation. Thank Apple for not crashing when we set variables that don't exist, forcing us to remember they break OO and force us to do it, too... gah, such an elegant system yet so broken! Seriously, I love Native, but it's just not good, encourages poor OO design. Not our fault, just reminding that your resize function might be working, but Apple's Way requires you load the view by use, not by creating and initializing it |
|||
|
|
|
BUT!!!
... the trick is to add it to - exp:
If you call it at - Comments:
1) Even if your app sets default orientation portrait, user can lock it at landscape. Thus setting the default is not really a solution to work around it.
2) There are other tasks like hiding the navigation bar, to be placed at viewWillAppear to make it work and at the same time prevent flickering. Same applies to other views like UITableView |
|||
|
|
|
For determining landscape vs portrait, there is a built-in function:
|
|||
|
|
|
In your view controller, get the read-only value of self.interfaceOrientation (the current orientation of the interface). |
|||
|
|
|
I've tried many of the above methods, but nothing seemed to work 100% for me. My solution was to make an iVar called orientation of type UIInterfaceOrientation in the Root View Controller.
Then, any place where you need to check the orientation you can do something like this:
There may still be a better way, but this seems to work 98% of the time (iOS5 notwithstanding) and isn't too hard. Note that iOS5 always launches iPad in portrait view, then sends a device the willRotateTo- and didRotateFromInterfaceOrientation: messages, so the value will still be inaccurate briefly. |
||||
|
|
