Tagged Questions
0
votes
0answers
10 views
Allowing a child UIViewController to rotate freely from it's parent UIViewController
I'm looking to present a view controller capable of rotating to landscape orientation from a view controller that can only display in portrait. I'd like to animate it's presentation in such a way that ...
0
votes
1answer
55 views
Resizing full screen view inside UIViewController on rotation?
I added a webview to a UIViewController. I assumed that I could match it's size to the UIViewController's view, but soon realised that the UIControllerView frame was independent of the screen ...
1
vote
1answer
52 views
iPhone startup orientation (again!)
EIDT: fixed. It looks like it was a Simulator issue.
Thanks to Gabriel
One the simulator I get only this:
--- UIDeviceOrientationDidChangeNotification -> [<UIDevice: 0x7577d30>] {
But on ...
1
vote
1answer
50 views
Forcing a viewcontroller to be portrait monotouch iphone
I have a view controller in my app that want to show always in prtaint mode. The objects of this screen is added in runtime and based on the protaint mode. It is my first viewcontroller.
I tried some ...
0
votes
1answer
36 views
Event willAnimateRotationToInterfaceOrientation isn't calling [duplicate]
I have several UIViewControllers on the application. But only on one of them willAnimateRotationToInterfaceOrientation event is calling.
How to make willAnimateRotationToInterfaceOrientation work for ...
0
votes
2answers
57 views
UIToolbar doesn't get smaller in landscape
In my main view, I add a normal UIToolbar to the bottom of the frame, in landscape it doesn't get smaller? Is this because i dont supply landscape images or am i missing something else? All of the ...
0
votes
0answers
28 views
UITabBar rotataion issue in iOS 5
I have a problem when trying to rotate a view that was pushed from a UITabBar.
The TabBar itself should NOT be rotated at all, only the view that is pushed from it - should.
I use this code to force ...
0
votes
0answers
102 views
How to invoke rotation in iOS 6 with UITabBarController
I have an app using an UITabBarController and I want to support landscape view for one of the tabs.
I currently have a category set up that does:
- (BOOL)shouldAutorotate
{
return ...
0
votes
0answers
33 views
setViewControllers does not set the correct orientation based on the topViewController
I use a UINavigationController to present content in my app. I keep my controllers in a separate dictionary and, upon user interaction, I load the navigation controller with the proper ...
0
votes
2answers
29 views
How to fix a viewcontroller's rotation?
My app uses landscape only. I fixed it via .plist's Supported interface orientations.
However, I need to use UIImagePickerController, and it only supports portrait mode. How can I rotate my app's ...
0
votes
1answer
247 views
UIModalPresentationCurrentContext - Rotation Methods not called
I'm attempting to present a VC on top of a VC using UIModalPresentationCurrentContext in order to see the view behind it. The code below works:
UIViewController *transparentViewController = ...
0
votes
1answer
310 views
Rotate UIViewController Programmatically?
I am trying to rotate a UIViewController by 180 degrees programmatically. Let's say I hit a "Rotate" button. That said button should rotate the screen and it's content by 180 degrees. My iOS Target ...
0
votes
2answers
169 views
Rotate only one view controller in a tabbed application
I've read to many posts but I can't find a solution.
I've a tabbed application using storyboard. All the View Controllers of that Tabbed Application must show the content in portrait orientation, but ...
0
votes
1answer
75 views
Diagnose rotation problems on iPad
I am having a weird problem with keeping orientation on the iPad. Very rarely, when I swap in and out view controllers, my view is displayed as portrait, even though my device is in landscape mode.
...
0
votes
3answers
359 views
How do I notify system when supportedInterfaceOrientations changes?
My root view controller's implementation of supportedInterfaceOrientations almost always returns UIInterfaceOrientationMaskAll, however there is one edge case where it returns ...
5
votes
4answers
5k views
iOS 6 Rotation: Pushing a View Controller
I want to support iOS 6 rotation. Trouble is, I've been looking through a lot of documentation and stack overflow questions but have not found any even slightly in depth solutions. I've only seen that ...
0
votes
2answers
375 views
Container controllers and iOS 6 rotations
My app supports portrait, landscape left and lansdscape right orientation, but in some places of the app I only support portrait.
Making the iOS 6 adaptation I have a problem. I show a modal ...
0
votes
1answer
75 views
Simulating a orientation change on a UIViewController
I have a root UIViewController that handles multiple sub UIViewControllers. The root view is a custom tab bar that does not rotate. I want the sub controllers to rotate with orientation changes.
From ...
0
votes
0answers
104 views
How can I make the UIViewController rotates only 90 degree in every rotation
I write an iPad app and almost done except only one unresolved issue.
Let image screen like below picture and UIInterfaceOrientation is number.
When I rotate screen from 1 to 3, 3 to 2, 2 to 4 and ...
0
votes
1answer
193 views
didAnimateRoation toInterfaceorientation - detect when rotation is finished?
There is a delegate methode willAnimateRotation toInterfaceorientation, which is called right before the interface performs its rotate animation. But how can I detect when the rotation is finished?
I ...
1
vote
1answer
120 views
Issues with view size when using a controller to control other controllers
I am working on a ViewController which switches view based on a UISegmentControl. I found a tutorial online after viewing this question on stack overflow
The main view controller is a tab view ...
3
votes
3answers
3k views
Getting the correct bounds of UIViewController's view
I have an iPad-application. In landscape orientation the UIViewController's view actual width = 1024px and height = 768 - 20 (statusBar) - 44 (navigationBar) = 704px.
So I wanna get this [1024 x 704] ...
0
votes
1answer
78 views
Rotating UIViews become unresponsive
I have a UIViewController subclass that changes its frame when the UI rotates (for example, most commonly, the frame is the same size and centered in both landscape and portrait.) When the view ...
0
votes
1answer
95 views
Subview of UITabBarController when rotating is underneath
I'm adding a notification/alert type view to the tabbarcontroller which is my apps rootview controller so that I get the automatic rotating goodness.
However, when rotating my alert view ends up ...
1
vote
1answer
228 views
how to set orientation to correct device orientation after dismissModalViewController?
i have a detailview where content is displayed. with a button i am presenting another view modally:
[self.viewController presentModalViewController:helpViewController animated:NO];
So, when i ...
0
votes
2answers
576 views
How do I push a full screen view controller when the iPhone is rotated?
I'd like to show a different full screen view when the iOS device is rotated to a landscape orientation and return to the previous view when the device is rotated back to landscape.
I've mostly ...
0
votes
1answer
260 views
After dismissModalViewController, view is in portrait mode
I have a detail view where i load a help view with a button. I am using [UIViewController presentModalViewController:animated:].
In help view I am dismissing the view with a button. I am using ...
3
votes
2answers
2k views
UIViewController inside a root ViewController not rotating
I have a UIViewController that I want to add on top of the entire app as an independent layer. So I tried adding it to the UIWindow using [self.window addSubview:viewController.view] in the app ...
3
votes
2answers
2k views
didRotateFromInterfaceOrientation: is not called for controller which presented modal controller on iOS 5
There is a view controller (let's name it parent), which presents other view controller (let's name it modal) with presentModalViewController:animated:, and then device is rotated. Both controllers ...
2
votes
1answer
1k views
iOS 5 not autorotating view when loadView is called the second time
When I run my app in landscape mode, the second time my view controller's view is loaded and loadView is called, iOS 5 is not rotating the root view controller's view away from portrait, nor is it ...
0
votes
0answers
203 views
Xcode, go to an independent view controller using a button or is a tab bar required?
I'm confused about independent view controllers. I need an independent view so that I can control the rotations separate from my other view (View A) and parent view (Splashview). Can this be done by ...
2
votes
1answer
1k views
Device rotation while displaying modal view controller
I have an OpenGL app which supports dynamic device orientation. I can rotate the device to any of the 4 physical orientations and everything works as expected.
Now I've added a modal view controller ...
5
votes
2answers
4k views
UIViewController device rotation delegate methods are not getting called in iOS5
I am developing an iPhone application. In this application, UIViewController (vc1) presents another UIViewController (vc2). vc1 supports both Portrait and Landscape orientations; vc2 supports only ...
3
votes
1answer
276 views
orientation changes, when are all my view controllers rotated?
If I have several UIViewControllers pushed onto my navigation stack, how/when are the none-visible (bottom) view controllers re-layed-out? Do they all get layed-out at the same time as the visible ...
0
votes
4answers
826 views
how to display UIActivityIndicatorView BEFORE rotation begins
I'd like to display an activity indicator BEFORE the work undertaken by willAnimateRotationToInterfaceOrientation:duration: begins. Most of the time in my app, this work is quickly completed and there ...
0
votes
1answer
1k views
Losing rotation support after programmatically adding UITabBarController to UIWindow
My application starts off with nothing but a UIWindow. I programmatically add a view controller to self.window in application:didFinishLaunchingWithOptions:.
myViewController = [[UIViewController ...
0
votes
0answers
151 views
How can I bind a UIView's orientation to that of it's parent view?
I have a UIViewController, with a toolbar at the top. I have a few views that I'm going to be adding and removing, but I don't want them to cover up the toolbar. So I made another UIView, that fills ...
0
votes
2answers
226 views
Converting to Universal App - Views wont rotate
Im converting an Iphone app to a universal App, I have created an Ipad specific view controller to deal with the view, However the view doesnt rotate and i cant see what im missing.
the ...
2
votes
1answer
808 views
Custom UIView rotation with a view controller
I have an interface which consists of two views, which in landscape mode are to the left and to the right of the screen. Now when rotating to portrait, the views should be on top of each other and ...
0
votes
1answer
583 views
UIView rotate problem
I have two UIViewController in my app. I switch the view between them. One is hidden other one is not. Everything goes fine except the orientation problem. In both UIViewController
I override this ...
1
vote
0answers
118 views
ipad all views start in portrait mode even when app loads in landscape
I have a nicely complex nested set of Viewcontrollers, one of them (about 5 deep) has custom made panel's that are generated on startup. I have code that detects the rotation of the device and ...
1
vote
1answer
904 views
UIViewController autorotate some components?
I have a UIViewController that has an image view and a toolbar. I would like the toolbar to rotate, but the imageview to stay as it is. Is this possible?
0
votes
2answers
292 views
Replacing ViewController on iPhone rotation
My App only has a portrait driven GUI, but there's a only section that needs to be rotated.
When the device is being rotated I want to dismiss the current View(Controller?) and replace it with a ...
4
votes
1answer
4k views
Why are my subviews not centering correctly depending on device orientation?
I'm trying to create programatically a custom view controller with subviews which center on the screen. I've succeeded, and when I navigate to this view, the centered view appears in the center, and ...
2
votes
1answer
2k views
How to handle rotation for a UIViewController that isnt on top of UINavigationController stack?
I have a root UIViewController (VC1), inside a UINavigationController, which handles rotation by adjusting its views/subviews frames manually in the willRotateToInterfaceOrientation: method. The ...
0
votes
1answer
408 views
Main view that should not rotate but subviews that should, including UIPopoverController
I would appreciate some help before spending any more time on trial and error.
Imagine the following: I'm just starting to create something for the iPad that will look something like a dashboard with ...
0
votes
3answers
1k views
iOS: Universal app won't rotate, never calls willRotateToInterfaceOrientation
My (Universal iPhone/iPad) app will not rotate. In all of my viewcontrollers I return "YES" to the method shouldRotate, but my viewcontrollers' willRotateToInterfaceOrientation methods never get ...
0
votes
3answers
667 views
Cannot properly rotate a translated UIView on the iPad
I have an UIViewController that has two UIViews inside, whose layout (set in Interface Builder) is something like this (the magenta colored view is the UIViewController default view):
and I added ...
0
votes
1answer
2k views
How to get interfaceOrientation property set correctly in view controller hierarchy?
I have a custom view controller hierarchy.
A sub view controller is added, to a custom parent view controller simply as a subview. The parent view controller also calls the sub view controller's ...
0
votes
2answers
3k views
Rotating iPhone and changing views
I've never played around with the iPhone being landscape, but I have a fully working iPhone app that is all assuming the user is viewing the iPhone upright. I'd like to play around with rotating the ...


