0
votes
2answers
16 views

IOS Prevent text from stacking on screen rotation

I have a custom table view cell with two labels in it. If I rotate the screen the two labels stack on top of each other and behave badly. If I back out and display the view again while still in ...
0
votes
1answer
32 views

Adding UIViewController messes up screen orientation

I started with a GLSprite sample app (source code), then added a UIViewController by adding UIViewController *vc = [[UIViewController alloc] init]; vc.view = glView; self.window.rootViewController = ...
0
votes
0answers
36 views

iOS: wrong orientation when change rootViewController of main UIWindow

My app (Ipad, landscape) starts with a UITableViewController as rootViewController of the main UIWindow, it works fine; Then I change it to another view controller, but then I see a blank bar on the ...
0
votes
5answers
68 views

First UIView in Portrait orientation and second in Landscape

I have an app which has 2 view controllers. The first viewcontroller should be in portrait and it's ok, but when I'm loading the second view controller, I could not make the app orientation to be ...
4
votes
2answers
64 views

How to fix a specific orientation to a viewcontroller in IOS [duplicate]

I am working on an iPad app. It is to capture the image in popover and crop the image in full screen in next view. Here it consists of following screens 1) LoginViewContoller(need all orientations), ...
0
votes
3answers
47 views

App displaying in landscape when on iPhone mode on iPad

When my app launches on the iPhone, it displays in portrait, as it should. When it launches on the iPad in iPhone mode, it displays in landscape, if rotated that way. This is the code I have: - ...
0
votes
2answers
40 views

When does it changes orientation to default orientation?

I'm developing an iOS application with latest SDK. My app only supports Landscape right orientation and it only has one view controller. I set the only available orientation modifying ...
3
votes
1answer
315 views

Switching between 2 view controllers on same storyboard, on rotation using willAutorotateTo… not working,

im having a little problem here. I have two view controllers on same storyboard (MainStoryboard -> Calc view Controller in portrait mode and Calc view controller in landscape mode). When i have ...
4
votes
4answers
173 views

Repositioning controls when the orientation changes

I know Auto Layout can be used to make the sizes and position consistent when the orientation changes. Is it possible to completely change the layout when the orientation changes? For example, please ...
0
votes
2answers
112 views

How can I know the orientation changed in AppDelegate

The function of how the device know the changement of orientation is -(void)viewWillLayoutSubviews and -(void)viewDidLayoutSubviews But, they are just in the controllers; Now I want to know is there ...
0
votes
1answer
119 views

MPMoviePlayerViewController in landscape / all orientations

My questions is really simple, tutorials and answers didn't fix my problem. I have an app with settings: I want support only Portrait/Upside Down orientations in all my viewControllers except when I ...
1
vote
1answer
568 views

iOS: Change interface orientation when pop view controller

All view controllers in my app are working only in portrait orientation except one which can be portrait or landscape oriented. I have some usage scenario like following: I push controller which ...
5
votes
2answers
195 views

shouldAutorotateToInterfaceOrientation Getting called twice on launch

I am working on iOS 5 targeted project. I am having the orientation method as follows. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { NSLog(@" My ...
0
votes
2answers
516 views

Storyboards Orientation Support in Xcode 4.5 and iOS 6.x ?

I've created two storyboards both identical except one contains portrait views and one contains landscape views. I don't want to use autoresize masks because the layout of some of the views changes ...
0
votes
0answers
247 views

Blocking of orientation change in XCode 4.5.2 for iOS 5.x

My task is to made simple app for only UIOrientationLandscapeLeft, and other orientations must be blocked. I work in the latest Xcode but app will be installed in iOS 5 device. I changed orientation ...
0
votes
1answer
132 views

UIButton is not touch up in Landscape mode [closed]

I am creating a app for ipad which have landscape and portrait mode. In landscape mode, UIButton is not working in some particular coordinates. It is not working touch up inside if x value is more ...
1
vote
3answers
305 views

Is it possible to have different orientations for viewControllers inside UINavigationController?

I want all view controllers to support only portrait mode, except one view controller lets call it "LandscapeSupportViewController" that should support also landscape mode. The problem is when I'm in ...
6
votes
3answers
1k views

iOS app starts in landscape mode

I have a strange problem. My app keeps starting in landscape mode. If I open it in simulator it rotates to landscape mode automatically. When I start it on iPhone it firstly starts in landscape mode ...
0
votes
1answer
93 views

EXC_BAD_ACCESS when trying to get iPhone screen dimensions

I'm trying to make certain elements resize according to the screen dimensions when the interface orientation changes. I've read in various places (including a few answers on here) that the way to get ...
0
votes
2answers
347 views

Screen orientation not changing despite calls to shouldAutorotateToInterfaceOrientation

I would like to add the functionality to change the screen orientation for various views in my app. Having read various tutorials, I implemented the shouldAutorotateToInterfaceOrientation method in ...
1
vote
1answer
176 views

TableView's indexPathsForVisibleRows returns data for old screen orientation

I am dynamically changing annotations on the map based on the tableview's items that are visible (works ok when user scrolls in tableview). When the screen rotation changes, i call ...
11
votes
3answers
4k views

iPhone - UIWindow rotating depending on current orientation?

I am adding an additional UIWindow to my app. My main window rotates correctly, but this additional window I have added does not rotate. What is the best way to rotate a UIWindow according to the ...
0
votes
1answer
693 views

Resizing UITextView for Landscape Orientation

I have a basic View created in IB containing a UITableView and a UITextVIew. I size the UITextView programatically to fit its content as below: CGRect frame = self.textView.frame; frame.size.height = ...
2
votes
2answers
833 views

Application doesn't change orientation

I have an application with a tabbar in which i want to detect interface orientation. I have set in info.plist the supported orientations. This is my main interface declaration: @interface ...
0
votes
3answers
5k views

How to deal with background image orientation in UIView

I'm using setting the background image using methodology below. When I rotate my device the background repeats, which make sense because it is not an image. How do I deal with orientation change if ...