The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

iOS: Change Orientation only for few pop-up views

I have an app which runs only in Landscape mode. All working well. But I have few pop-up views like Apptentative feedback view and Twitter Sheet view, works great when in portrait mode. So how can I ...
0
votes
2answers
30 views

UIDeviceOrientation for MPMoviePlayerViewController

I am working on a app in which I have a list of items where i want to click on a thumbnail and video must be played, My requirement is Only MPMovieViewController must rotate remaining screens must not ...
0
votes
1answer
19 views

How to make only MPMoviePlayerController in both landscape and potrait mode

I am working on a application which has to play videos when clicking on some thumbnail, I am displaying list. I want only the Video to rotate in Landscape and Potrait Mode but other screens must in ...
0
votes
0answers
27 views

After coming to landscape mode a white line appears between tableHeader and tableView?

I made a tableView that loads data on segment button change.And it is working perfectly. I had set tableView background color to some RGB values and applying custom header over it.My code is as ...
0
votes
1answer
50 views

EXC_BAD_ACCESS / KERN_INVALID_ADDRESS related to orientation changes

I have a weird problem. I got an error report that said that the app crashed related to an orientation change. The problem is that I haven't signed up to any orientation events at all in the app code. ...
0
votes
0answers
45 views

How to get ipad orientation status in ios6.0

Hi in my iPad application I have to do few operations based on device orientation for getting the device orientation. I am using: UIInterfaceOrientation statusBarOrientation =[UIApplication ...
0
votes
0answers
85 views

UIDevice beginGeneratingDeviceOrientationNotifications not necessary?

The documentation for UIDevice orientation property says: The value of this property always returns 0 unless orientation notifications have been enabled by calling ...
-2
votes
1answer
45 views

deviceorientation not working

Well I've got this little script: <script> window.addEventListener('deviceorientation', function(event) { var a = event.alpha; var b = event.beta; var g = event.gamma; }, false); ...
1
vote
2answers
78 views

Check if current orientation is supported orientation or not

In my property list file, I have mentioned all the supported orientations. I have many applications which support different orientations. In order to handle all the UI related stuff with all these ...
10
votes
3answers
628 views

Disable taking images in any orientation other than Portrait AVFoundation

I am using AVFoundation to show the camera. I would like to prevent the camera itself to rotate so the viewer will see the camera only in portrait and the images will be taken only in portrait mode. ...
0
votes
1answer
118 views

Face Up orientation iPhone

Can i somehow disable the Face Up orientation in my iPhone app? OR can i handle it somehow? It distorts the app's view when kept on flat table.
0
votes
1answer
202 views

Correct orientation after UIActivityViewController is dismissed

I am presenting UIActivityViewController from my controller. I've encountered issues with rotations. After some data sharing option is chosen, let's say "Mail", mail compose view controller is ...
0
votes
1answer
208 views

[self.view addSubview:_topViewController.view]; autorotation issue

Really been stuck for this for weeks. I am using ECSlidingViewController, and i want one view, to be able to rotate to landscape and portrait, as it is a landscape photo, and needs to make use of ...
1
vote
1answer
83 views

UIDeviceOrientation Notifications

In order to receive UIDeviceOrientation change notifications, one must do two things: call beginGeneratingDeviceOrientationNotifications on UIDevice register for the notifications. Here's my ...
0
votes
1answer
88 views

Having trouble with if/else statements using UIDeviceOrientation in iOS application

Dear fellow iOS developers: I'm writing an application that checks a device's initial physical position. If it is flat, the device is supposed to do something, and the user is then supposed to ...
0
votes
3answers
84 views

Need help independently calling method: - (void) orientationChanged:(NSNotification *)note in iOS

I'm writing an application that checks a device's orientation, and because of that, I have the following code block: [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; ...
0
votes
1answer
46 views

iOS device does not react when it is in correct position when using UIDeviceOrientationDidChangeNotification

Dear fellow iOS developers: I have an app where I am making my iOS device make a sound when the user changes the device's position. I have the user put the device in a flat position, landscape ...
1
vote
1answer
275 views

GLKit Rendering and iOS Device Orientation (Face Up / Down)

I have an app with some projection matrix set-up code based on Xcode 4.5.2's OpenGL Game template. In the update function I set appropriate z-translation values for baseModelViewMatrix by querying ...
4
votes
1answer
293 views

Autorotation in ios 5 vs. ios 6 issues

I have an iPad app that must support iOS 5.0 and later. I have a bug that behaves differently in 5.0/5.1 than it does in 6.0. The issue is a view controller in a tabbarcontroller that pushes a modal ...
2
votes
1answer
59 views

Is it possible to find out if an app UI is in landscape orientation after a device has been set down on a surface?

I'm determining a frame offset for a keyboard if the user is holding iPad in landscape mode. I'm finding that I'm unable to properly set the offset if I'm adding content in landscape mode and then ...
0
votes
1answer
160 views

Implement same page transition in UIDeviceOrientationLandscapeLeft and UIDeviceOrientationLandscapeRight

I have developing project in iOS 6.0 sdk which should work on iOS4.3+ devices, in my project i am using the page curl to navigate betwwen pages , but the page curl happening in LandscapeLeft is not as ...
1
vote
3answers
109 views

Registering for UIDeviceOrientation

I want to detect the current orientation of the device. So, I used the a line of code Note: It gives me orientation even if I have not register it -(IBAction) deviceOrientationChanged:(id) sender{ ...
0
votes
2answers
110 views

UIViewController container: allow different orientations for childs

UPDATED: Is it possible to have one UIViewController (vc1) as container and one UIViewController as a child (vc2) [vs1 addChildViewController:vc2]; [vs1.view addSubview:vc2.view]; and allow ...
0
votes
2answers
51 views

Need help going through sequential steps inside a while loop

Dear fellow iOS Developers: I need to go through a series of steps one by one. In all, I have three steps to go through which are inside of a while loop. Once the three tests are completed, then ...
1
vote
1answer
1k views

upSideDown iPhone orientation is not working in iOS 6?

hope you will be fine and doing your best. I am getting a problem in upSideDown Orientation in my iOS 6, while I think I am doing everything perfect, but I don't know why it is not working for me. I ...
1
vote
0answers
101 views

How to start a landscape iOS app in the correct orientation without rotating?

I'm developing a landscape-only, iPhone-only iOS6+ app and having problems getting the rotation to work as I want it to. The only supported interface orientations set for the app target are ...
2
votes
1answer
845 views

iOS 6 Orientation with Navigation Controller

I have an app that works fine on ios 5,im trying to upgrade my app to work on ios 6, i had read tons of questions and tutorials about using ios 6 orientation, my problem is when i call my ...
0
votes
1answer
322 views

Stop Autoresizing when UIDevice Orientation changes

I'm having a quite annoying problem with iOS 6.0. Everytime the IUDevice orientation changes some subviews autoresize even if not needed. In my particular case the only thing that autoresizes is ...
0
votes
1answer
460 views

Forcing the portrait orientation for my View

I am working on ARC based project. My project is targeted iOS 4.3 I want to force the Portrait orientation to one of my view. The following doesn't seem to work for me. [[UIDevice currentDevice] ...
0
votes
2answers
61 views

Can only get previous rotation

In my objects init method [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(didRotate:) ...
2
votes
4answers
2k views

iOS 6 orientation issues

I have an application which normally is a portrait app and only show landscape view for one UIViewController. It works fine until the new iOS 6 is released. I really don't understand how orientation ...
1
vote
1answer
311 views

iOS 5.0: current device orientation in view did load returns 0

Could someone please tell me why [UIDevice currentDevice] orientation] always returns 0 in view did load? I want to change the layout of my screen based on current orientation. It doesn't work when I ...
1
vote
1answer
437 views

UIDevice orientation not working as expected

I am having a problem with device orientation. I have an iPhone app that has some views, all of them should not rotate except one. So I take a look inside Info.plist; I select two device orientations, ...
0
votes
3answers
148 views

UIInterfaceOrientation on launch

I'm not sure if this a bug or something I might do wrong, but when I launch my application in portrait mode without rotating the device and I run this code ...
0
votes
2answers
98 views

issues on Orientation iOS

I'm developing an app that supports only portrait orientation as written in my Info.plist file. But when i Rotate the device the status bar rotates but the views don't. I don't use the ...
0
votes
1answer
506 views

Why does UIView (on iPad) default to portrait even if set to landscape in storyboard

This topic has come up before (iPad modal view controller acting in portrait even though it's landscape) but I haven't found a clear answer - so I don't know if this is a duplicate or not. In new ...
2
votes
1answer
261 views

UIDeviceOrientationFaceDown in iphone

I want to detect UIDeviceOrientationFaceDown. How can i do this??? Actually i want to perform some action when my iphone face is down on flat surface. how is it possible??? plz help me to do this. i ...
0
votes
1answer
249 views

What is the Purpose of the UIDeviceOrientationUnknown Orientation?

What is the purpose of the UIDeviceOrientationUnknown Orientation? When subscribing to notifications about device orientation, when can receiving this message be more beneficial than not receiving ...
-3
votes
1answer
125 views

Device Orientation: Useless Orientations [closed]

A couple of my classes are subscribed to notifications for when the device orientation changes. Other times, I'm directly checking the orientation with [[UIDevice currentDevice] orientation] As ...
0
votes
1answer
115 views

Pushing a View Controller in a specific orientation

The main UIViewController (A) displays another UIViewController (B) when the devices rotates to Landscape mode. So rotating the device to landscape while on A presents B modally and rotating back to ...
0
votes
1answer
156 views

Presenting a UIViewController when on landscape orientation

What is the best way to show a UIViewController only when the device is on landscape mode? The modal view controller should present itself modally when the device is on landscape mode and should ...
1
vote
1answer
676 views

Animating UIViews to get crossfade effect not working very well

I have successfully created a icon menu that displays from a tabBar selection. You can view this menu in either Portrait or Landscape. because of the space on the screen I have made it so that in ...
1
vote
1answer
422 views

device Orientation to statusBar Orientation changes

I have created a device orientation listener to catch when the device is rotated, like so [[NSNotificationCenter defaultCenter] addObserver:self ...
3
votes
1answer
342 views

handling ios device orientation

I am having issues with my uiviews depending on the devices orientation... The main issue that I am having is that UIDeviceOrientationFaceUp UIDeviceOrientationFaceDown are messing with my view I ...
1
vote
2answers
155 views

Device orientation will change instead of has changed

Is there any way I can perform code before the device orientation animation finishes? Right now I'm adding myself as an observer to UIDeviceOrientationDidChangeNotification However I need my code to ...
1
vote
1answer
189 views

CGAffineRotation Skews Image Photos

My iOS has registered for device orientation change notifications via NSNotificationCenter, and has a method that responds to the different orientation changes. The following code is called to change ...
1
vote
3answers
762 views

How to handle UI components when device orientation for iPhone/iPad changes?

I have several components on my UIView like textfields, labels, tables, buttons. I want to handle device orientation changes. How to make these components arrange at right place automatically? Or do ...
1
vote
1answer
239 views

Is it possible to add observer or notification when statusBarOrientation changed?

I have a very tricky code, because sometimes I set a new orientation. [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait]; Is it possible to add observer or notification when ...
1
vote
1answer
148 views

Can I rotate a UIView without the black bars?

I have a UIView that takes up the entirety of the window on the iphone. When it rotates to landscape, the edges get the little black bars until it snaps into place, as i would expect. I want to make ...
1
vote
0answers
83 views

Get UIInterfaceOrientation when just one is supported

I have an iPad App that supports just one orientation (landscapeRight). Unless I want to get the current orientation of the device to display something if the device is held the wrong way. How can I ...

1 2