uiinterfaceorientation Questions
2
Solved
Working fine with iOS6 even if I change the orientation
Working fine with iOS7 If I don't change the orientation
Error in display when orientation gets change iOS7.*
I am creating UITextField...
Ravelin asked 10/4, 2014 at 12:0
2
Solved
I'm having a problem with collectionView's item size. I want to display 3 items in row for Portrait mode and 6 for landscape. I've set up -layoutSubviews like this:
- (void)layoutSubviews {
[supe...
Molli asked 19/5, 2014 at 13:2
2
Solved
I'm learning / experimenting with autolayout and UITableViewCell's. I asked another question a few days ago to which I answered my own question, I'm still using the same constraints / code. For the...
Refreshment asked 6/5, 2014 at 13:47
1
Solved
Below is happening with iOS 6.
I am playing video which can be played in potrait or landscape mode. Once video's Done button is pressed I am making screen to potrait mode programmatically.
The pr...
Arana asked 26/1, 2014 at 13:46
3
Solved
I created an app in ios 6 with navigation view.Also I have set all orientation options in the application summary and even used the
-(BOOL) shouldAutoRotate
and
-(NSUInteger) supportedInterfa...
Eudora asked 28/11, 2012 at 11:55
5
Solved
I've heard that using of [UIDevice setOrientation:] can be the reason to app rejection in Appstore. Is there any proofed info about it?
Trey asked 24/11, 2011 at 12:57
3
Solved
I am facing a weird problem here.
For some reason I am disabling the animation during orientation change in my view controller using [UIView setAnimationsEnabled:NO];
But when the alert view is pr...
Svetlana asked 29/5, 2013 at 6:20
4
Solved
I have use the Xcode 4.5.1 and use this conditions
#define IOS_OLDER_THAN_6 ( [ [ [ UIDevice currentDevice ] systemVersion ] floatValue ] < 6.0 )
#define IOS_NEWER_OR_EQUAL_TO_6 ( [ [ [ UIDevi...
Stoltz asked 17/10, 2012 at 11:16
2
Solved
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 productID:tes...
Bracteole asked 24/7, 2013 at 13:14
7
Solved
I am using
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
delegate to change the frame of my view based on the orientation type
i.e.,
if(UIInterfa...
Altagraciaaltaic asked 20/9, 2012 at 19:35
2
I am having custom split view controller in my App with a master controller and a detailed controller.
- (id)initWithMasterController:(UIViewController*)aMasterController
detailedController:(UIVi...
Cementation asked 17/10, 2012 at 6:44
1
Solved
So I am developing an iPad app that supports only landscape mode except for on one modal view controller. The issue I am having is that once I present the modal view and change the orientation to p...
Ardath asked 2/5, 2013 at 2:39
2
I am building an app that will be Portrait only for the main views (Both normal and upside down).
I have set this setting in the Project Settings/Plist and all works fine.
However, I have a few mod...
Incapable asked 20/2, 2013 at 20:32
5
I know how to allow/disallow the orientation to rotate using
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
However, I have the problem now where the...
Mintz asked 14/6, 2011 at 17:6
5
Solved
This problem appears to be intermittent, but I am not sure why exactly. When running my application on the device (iPad), I have some code to load a scroll view with some image views according to t...
Feudatory asked 27/4, 2011 at 20:49
3
Solved
I am trying to go from a viewcontroller that supports landscape (while in landscape mode), to one that explicitly doesn't (and shouldn't) support landscape. I'm doing this as follows:
- (BOOL)shou...
Infliction asked 27/1, 2011 at 21:56
1
Solved
I'm presenting a modal view with the code:
[self presentViewController:movieViewController animated:YES completion:^{
// completed
}];
Inside movieViewController, the controller is dismissed ...
Holdfast asked 26/2, 2013 at 20:27
5
Solved
My application is composed of a toolbar and an AVCaptureVideoPreviewLayer in a background UIView.
I'd like to see that toolbar rotate regarding the device orientation, so in my main ViewController,...
Momentary asked 21/7, 2010 at 16:5
2
Solved
My application is navigation based and mainly runs in portrait orientation, But one view controller supports both portrait and landscape orientation. Now the problem is, When I push the new viewcon...
Lighthouse asked 15/2, 2013 at 14:14
2
Solved
I find many question to force UIViewController to landscape as default:
How to force a UIViewController to Portrait orientation in iOS 6
And try this:
- (BOOL)shouldAutorotate
{
return YES;
}
-(...
Ibrahim asked 2/2, 2013 at 3:26
3
I've used this code to force an orientation change back to portrait when the user is finished watching the video (it allows viewing in landscape mode), before popping the video view controller off ...
Wrist asked 24/9, 2012 at 11:18
1
Solved
I am working in Xcode 4.5.2, targeting iOS6 for an iPad app, using storyboards and segues.
Preamble: my root controller (loaded by the app delegate) is a splash screen with only an image, an upgrad...
Rhodonite asked 9/1, 2013 at 12:45
2
Solved
So I followed this thread: RootViewController Switch Transition Animation to transit the window.rootViewController from A to B to C. Code looks like this:
[UIView transitionWithView:self.window
...
Taut asked 8/11, 2011 at 16:32
2
Solved
I am using MSNavigationPaneViewController from here and have rotation sort of working.
I've overridden the rotation methods in my root UINavigationController
-(BOOL)shouldAutorotate
{
return YES;...
Wyon asked 18/12, 2012 at 14:12
3
Solved
I am using:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
How would I use this for Portrait and Upside down in iOS6?
this works for landscape l...
Tightwad asked 16/12, 2012 at 12:38
© 2022 - 2024 — McMap. All rights reserved.