The orientation of the application's user interface in Apple OS.
1
vote
0answers
5 views
set only only video view landscape in ios?
my application in portrait and landscape mode.
I want to show only one videoviewcontroller in landscape mode other all in portrait.
So please help me and tell me how can I change only one Videoview ...
0
votes
0answers
11 views
Dealing with simultaneous status bar and orientation changes?
I want to change the orientation from vertical to horizontal, hide the status bar, and push a new view controller on. Then, after a period of time, I want to undo those changes simultaneously. If I ...
0
votes
1answer
22 views
Weird behavior when changing orientation
I have a view with a pan gesture. I programmed its behavior perfectly on portrait mode, but when I change it to landscape mode its acting differently. The translation x,y are the same as in portrait ...
0
votes
1answer
54 views
How to rotate a view once the user has re-entered?
Bellow I have some code that i have placed in my AppDelegate.h & .m. This code detects when my MPMoviePlayerController(s) have entering full-screen and exited full-screen through notifications. ...
0
votes
0answers
26 views
Issue with Landscape View in Portrait App
My app is portrait only except one view which contains an embedded YouTube video. That view is supposed to open in landscape and up until recently, worked just fine. The only change I have made to ...
0
votes
1answer
28 views
Allow subviews to autoRotate even though parent views are locked in portrait mode?
I am developing an app in IOS6. I am using storyboard and in my summary I have only portrait mode checked for Supported Interface Orientations. This allows my entire app to be locked into portrait ...
0
votes
1answer
47 views
Working with points and multiple image views
I am working on a view controller which holds two UIImageViews. The bottom image view holds a photo (taken or selected by the user). The second image view is positioned on top of this, taking up the ...
0
votes
1answer
28 views
Rotating device while using accelerometer
I'm using accelerometer in my first Cocos2D game and it work fine, i'm able to move the sprite using the below code however, when i change the orientation from landscapeLeft to landscapeRight, the ...
1
vote
2answers
74 views
how to rotate parent view controller when child view controller orientation changes in iOS
I am displaying Child view controller on my parent view controller using
childView1 *viewController = [[childView1 alloc]initWithNibName:examTFVC_NIB bundle:nil row:gesture.view.tag ...
0
votes
0answers
25 views
Wrong content placement in landscape orientation
I have an app that was once in need of portrait orientation in iOS5, but now it must change to landscape left (and work in iOS 6+).
I have set the orientation to be landscape left in the project ...
0
votes
0answers
15 views
Manually set the interface orientation for the whole application
In my app I need to manually set the interface orientation to UIInterfaceOrientationPortraitUpsideDown in the case that an external microphone is plugged in. Otherwise it should be ...
0
votes
1answer
17 views
How can I manually change the orientation
My app should start with landscape mode.
I would like to change the orientation of the phone.
How to do this manually.I tried this it doesn't work.
shouldAutorotateToInterfaceOrientation:
Is ...
0
votes
0answers
2 views
How to resize the view when the orientation changed
-(void)willAnimateRotationToInterfaceOrientation(UIInterfaceOrientation)toInterfaceOrientationduration:(NSTimeInterval)duration
{
NSLog(@"test");
if (toInterfaceOrientation == ...
1
vote
0answers
71 views
Determine NEW Frame of Navigation Bar BEFORE actually rotating - iOS
I am using a a translucent Navigation Bar and Status Bar and my View Controller wants full screen. Thus, my View Controller's View extends under the Nav and Status bars and takes the full size of the ...
2
votes
1answer
27 views
Camera App Supported Orientation?
I want to do the same as Camera app: it looks like only Portrait mode is supported but when you rotate certain views get rotated while toolbar and some controls are in the same place.
I tried to ...