Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
99 views

How to rotate sub-views around their own centres?

Is it possible to rotate a view around its own centre? In my present implementation the sub-views (buttons, etc) seem to move along a funny path before they end up in the desired positions (since the ...
6
votes
2answers
145 views

Predicting UI element frames in -shouldAutorotateToInterfaceOrientation:

Is it possible to query (programmatically, at runtime) what the height/thickness of a navigation bar and/or toolbar will be post-rotation? That is, when building a frame for a specific subview, I ...
5
votes
2answers
2k views

Why Doesn't iOS Autorotate a View loaded from a Nib after it was released by didReceiveMemoryWarning?

My iPad app makes heavy use of autorotation. This is great. However, I've noticed that if a hidden view is released by the default implementation of didReceiveMemoryWarning (as described here), when ...
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 ...
3
votes
3answers
3k views

UIImagePickerController (using camera as source) does autorotate on iPad2, how do i stop it?

I am trying to write an app with some camera function, and I use an overlay view to decorate it with an image. This is how I implement the app: I use the UIImagePickerController to who the user what ...
3
votes
2answers
194 views

How to allow only one view in navigation stack to rotate?

I have ViewControllers A and B on the navigation stack. A does not support landscape orientation, B does. If the user rotates to landscape while viewing B and then taps the Back button, A is now in ...
3
votes
3answers
2k views

Rotating view controllers within a hierarchy of Tab Bar Controller -> Navigation Controller -> View Controller

My app has a view controller hierarchy set up like this: UITabBarController | UINavigationController | | | UIViewController | UINavigationController | ...
3
votes
3answers
2k views

Clean autorotation transitions in a paging UIScrollView

I have a paging UIScrollView in which the user pages horizontally through images, like Apple's Photos.app. That works, but now I'm trying to add rotation support. I've got the view rotating OK and ...
3
votes
1answer
1k views

“Hello World” iPhone app does not auto-rotate

OK, knowledgeable programmer-types, please be gentle... I'm having trouble getting a very simple, one-view "Hello World" app to rotate automatically. I go through the usual "Hello World" steps: ...
3
votes
6answers
3k views

UiSplitViewController doesn't autorotate

I have recently run into a problem. My iPad app is somehow preventing the iPad from auto-rotating. My app loads a UISplitView with both of the view controllers returning YES for ...
3
votes
1answer
974 views

Is it possible to auto-rotate a modal view but not its parent?

It seems that if a modal view's parent returns false to shouldAutoRotate... the modal view will also not autorotate. How can I have a main view which will never rotate, and a modal view which will ...
2
votes
1answer
71 views

How to make UIPopoverController to keep the same position on the screen after rotating?

I can't keep popover the same position on the screen after rotation. Is there any good way to do that, because just setting some frame to popover works terrible after rotating.popover.frame = ...
2
votes
1answer
466 views

iPad stop screen from Rotating Xcode 4

I am building an iPad app in Xcode 4. The app is suposed to always show in Landscape view. to achieve this I have tried the following: In the Target summary screen I selecte only Landscape Left as a ...
2
votes
1answer
623 views

UIScrollView does not rotate to landscape

This is most def something very simple, but it is driving me crazy, cant figure it out. It was very simple, see solution below My app does not auto rotate. It is just stuck in portrait. My ...
2
votes
1answer
1k views

Autorotating video played from HTML5 <video> in UIWebView

My app, for some reasons, only supports portrait orientation. However, in some cases I need to display videos from a UIWebView (with video tag) and it would be nice if the user can view it either in ...
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
2answers
193 views

Rotating a bmp and displaying it right-side-up

I have an app that snaps a picture and displays the picture on an Imageview. The problem is, I can only snap a pic in landscape mode in order for the bmp to be displayed right side up - Is there a ...
2
votes
1answer
420 views

“refresh” view on device rotation

I have my view set up in viewDidLoad. All the different frames and such of the subviews have been defined relative to self.view. Therefore it doesn't matter what size self.view is the subviews will ...
2
votes
2answers
931 views

How to auto rotate your own custom views?

I've learned that the best way to get graceful rotation is to set the auto rotation mask on the view that you want resize or move. This works fine if you're using SDK views like UILabel, but if you ...
2
votes
1answer
261 views

Autorotation in UINavigationController

There're an UINavigationController with rootViewController (as root) and secondViewController (as a child). The rootViewController should be able to rotate to any orientation (that works as expected, ...
2
votes
1answer
174 views

Is there a way to skip animating a rotation from shouldAutorotateToInterfaceOrientation?

I would like to allow the orientation to rotate as per the shouldAutorotateToInterfaceOrientation call to my view controller. However, I'd like it to do so immediately and skip the rotating animation ...
2
votes
2answers
333 views

How to keep image from autorotating?

I've got an UIImageView as a background image for my application, which, like a helicopter in distress, autorotates. The problem is when the orientation autorotates my image gets shifted all over the ...
1
vote
1answer
105 views

Nimbus NIPagingScrollView and Re-Layouting on Rotation

I'm using an NIPagingScrollView to display several pages on the iPhone. Everytime I flick to a page, the next page is also pre-loaded, which is fine. When I rotate the iPhone from Portrait to ...
1
vote
1answer
83 views

UITabBar autorotate issue

I'm wondering why iPad project based on UITabBarController won't autorotate when i specify some of the tab should autorotate in landscape mode and the other will autorotate in landscape and portrait ...
1
vote
1answer
58 views

TabBarController does not autorotate

From my modal view controller, you can choose between two options, then each one shows a tabBar and so on. My Modal view clearly auto rotates, but the tabBars do not, even though I set for every ...
1
vote
1answer
41 views

MonoTouch.Dialog Autorotate

I can't seem to get the MonoTouch.Dialog to rotate. In my constructor, I set Autorotate = true. I also added all orientations in the supported orientations section of info.plist. I also overrode ...
1
vote
0answers
69 views

How to rotate a zoomed MKMapView on iPhone?

I am attempting to enable autorotation in my App, which includes an MKMapView. I enable autorotation in my view controller by always returning yes in shouldAutorotateToInterfaceOrientation. This ...
1
vote
2answers
98 views

iPad UIInterfaceRotation is 0, rotation messed up on app-start

i guess i missed something really important in the apple manuals which causes me having this problems. I will describe what i want to have and what i get instaed + what i do. Preamble: goal of my ...
1
vote
0answers
107 views

BUG when autorotating interfaces with horizontal scrolling UITableView

In one of the screens of my application, I've implemented a horizontal scrolling tableview. The method of choice was to apply a 90 degree rotation to the tableview, and then rotating each cell -90 ...
1
vote
0answers
110 views

iPhone - Autorotation doesnt work after playing youtube video in other uiviewcontroller

I have a problem with autorotation of a viewcontroller (Inside a tabbarController, this is the only viewcontroller that should autorotate) and this works by setting the ...
1
vote
1answer
145 views

Should parent UIViewControllers propagate didRotateFromInterfaceOrientation to children?

There are two UIViewControllers: MyParentViewController, and MyToolbarViewController. MyParentViewController manages a view which fills most of the screen. MyToolbarViewController is a subview of ...
1
vote
3answers
68 views

How to check if a number is in a range?

For a program I am writing, I need to read a value from a file. When I do that, I get a value in the form (x, y). I need to make a script that splits those, so $x is the x value and $y is the y value. ...
1
vote
2answers
112 views

Unwanted UIView Autorotating: Navigation Controller Push

I have a navigation controller and it goes through that in portrait. Then, at a certain point, I push to a view that displays a graph, which I want to only display in landscape, and not even be in ...
1
vote
2answers
2k views

AS3 - iOS force landscape mode only?

I've built a game for iOS that is designed for landscape mode and it works just fine except that if you turn the device to portrait mode it stops there to with the interface only filling about the ...
1
vote
2answers
92 views

How to allow only for 180 degrees of autorotation?

For my iPad app, I intend to disable autorotation. However I heard that apple will reject the app as they expect the app to at least be able to rotate 180 degrees. Has anyone experienced this before? ...
1
vote
0answers
227 views

TTWebController autorotate to landscape

I can't seem to get my TTWebController to autorotate. My UITabBar subclass responds to shouldAutorotateToInterfaceOrientation on all my views except for my TTWebController subclass. That class ...
1
vote
2answers
179 views

Forcing rotation to landscape

I would like my app's rotation to be fixed as landscape... I've done some research, but most posts are about detecting change, and I couldn't find any about forcing one. Could anyone help me?
1
vote
0answers
221 views

Suppress iOS Two-Stage Animation warning

I'm doing two-stage animation on purpose, but I'm getting sick of seeing this warning in my logs. How does one suppress this? Edit: This is the warning I'm referring to: "Using two-stage rotation ...
1
vote
2answers
927 views

Auto Rotate Tab Bar application

Hey guys, I am trying to auto rotate my Tab Bar application. Apparently, I know most people will say to this problem is return YES; or that all the Tab Bar Items have to be in the same class in order ...
1
vote
0answers
502 views

iPhone UIActionSheet auto-rotating not working

I read a lot about that. People say it will not autorotate whene its parent is not set to auto rotate. I tried everything but no luck. I created view-based app (v4.2) with a button that executes ...
1
vote
1answer
441 views

Making one specific class of view controller auto rotate in a tab bar app, but forcing all other classes of view controller to stay portrait

I have a tab bar controller with this code - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations ...
1
vote
1answer
329 views

How can I make a custom orientation lock action?

I would like to make a custom orientation lock button for a reader app of mine, and I was thinking it wouldn't be too bad to whip up, but alas I am the one getting whipped. To start off I do have ...
1
vote
4answers
359 views

Autorotation on a gallery - willAnimateRotation… isn't invoked

I'm using this. I've put this in where the images are added: self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; I've put these overrides in ...
1
vote
4answers
354 views

How do I initialize a view to an interface orientation?

The problem is that I am launching in-app email and triggering keyboards (via UITextFields) and they are coming up portrait on my landscape app. I am able to rotate it portrait, then rotate it ...
1
vote
1answer
443 views

Auto-rotation on navigationBar

I've got a navigationBar that does not auto-resize when rotating the device anymore. So the navigationBar keeps it's portrait height of 44 pixels and does not shrink down to 32 pixels. I'm using a ...
1
vote
3answers
3k views

Set Orientation to Portrait on iPhone

I have an application that consists of a login, 3 tables, and then an image. You can rotate the image to landscape mode but what I want to be able to do is when the 'back' button is pushed and the ...
1
vote
1answer
697 views

Tabbar Nav app, allowing one view to rotate while others do not

I have a tab bar application in which i have 3 diffrent views each with there own view controller. In the tab bar code i have this, to handle rotation. #import "RotatingTabBarController.h" ...
1
vote
1answer
549 views

Problem on autorotate for UITabBarController and modal views

I have a problem opening and closing of a ModalView: when the user touches the button to open the view, or when it touches the button to close it, appears this message in Console: The view controller ...
1
vote
4answers
2k views

Autorotation and multiple view controllers

I'm creating an iPad application which should only work in portrait and portait upsidedown modes. For performance reasons in my applicationDidFinishLaunching method I'm creating several ...
1
vote
1answer
494 views

UINavigation Controller and Autorotation

I am using a UINavigationController to push and pop views. The Navigation bar is hidden. I have RootViewController, which is set to autorotate. It works just fine when it is visible. I also have ...

1 2 3