Questions tagged [landscape]

A page or device orientation in which the horizontal axis is longer than the vertical axis.

A page or device orientation in which the horizontal axis is longer than the vertical axis. Contrast with portrait orientation, where the vertical axis is the major axis.

1434 questions
0
votes
1 answer

What are some of the possible causes of a UIView rarely not being rotated when revisited?

I put this code into all of my viewControllers: UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; if (orientation == UIInterfaceOrientationLandscapeRight) { CGAffineTransform transform =…
Karl
  • 5,613
  • 13
  • 73
  • 107
0
votes
2 answers

iPhone camera can't open from landscape application

I am creating a landscape only application using sdk 3.0 that uses mapkit. I need to use iphone camera in my application. But I am getting following warning when I try to open camera. "Can't perform full-screen transition. The fromViewController's…
Napster
0
votes
0 answers

IOS - Superview is catching touch events on landscape mode

I've a UIViewController created programmatically, and when I insert its view to my general view, the 300 pixels in the bottom of the UIView aren't getting any touch event, the touch event is being caught by the superview, the main UIView. The…
user1573607
  • 522
  • 9
  • 23
0
votes
2 answers

EditText without keyboard in landscape mode

I intend to show a popup window with an EditText in it, and once shown keyboard could activate automatically : public void showPopup(View view) // a button invoke { LayoutInflater inflater = (LayoutInflater)…
lindeer
  • 1
  • 3
0
votes
1 answer

Xcode 1) Start and stay in landscape mode with swipe gesture 2) Play audio sound when image is tapped

I'm fairly new at programming and using Xcode for iPhone App design. I wish to do the following: Start and stay in landscape mode for a children's app. Use swipe gestures to move from image to image. One image per swipe. My problem is this: even…
Doan Tran
  • 1
  • 2
0
votes
1 answer

Restrict images in scroll view to stretch when iPhone moved to landscape orientation

I have imageViews as content for in the UIScrollView. If a user is viewing a potrait picture (320x480) and moves the iPhone in landscape orientation - the image stretches to occupy full screen. I want to restrict the image to stretch. I want a…
AJ.
  • 1,443
  • 7
  • 19
  • 31
0
votes
1 answer

How to have multiple landscape views in Xcode 4.1.1

Ok, so I want to have 3 view and all of them landscape but i want 2 of the to be in ONLY landscape and i want ONLY 1 OF THEM to be in portrait. When i do this they all go in portrait. I am using storyboards. I have in the .m file: -…
0
votes
1 answer

iPhone Orientation Issue

I have one last problem with an app I just completed. On the main menu screen I support only 1 orientation and on all screens after that I support the usual 3 orientations. The problem is that, say I am in the second screen and I hit back while I am…
0
votes
1 answer

Preventing orientation from changing

I got this program that starts doing some tasks after I press the button, and it isn't allowed to change its orientation while this task is running. I got figured out how to do that, but my problem is that my code only works one way. It keeps…
Rohit Malish
  • 3,209
  • 12
  • 49
  • 67
0
votes
2 answers

Why isn't the view Rotating in Tab Bar App?

I have a tab bar app, and my viewcontroller for one of my tabs loads a webview to a youtube video. I don't know why I can't rotate when I click play and try to watch the video. Here is my code // // TefViewController.m // SephardiJews // // …
jakife
  • 137
  • 1
  • 10
0
votes
1 answer

Landscape orientation switches to portrait

I'm new here, and I have a question. I've searched the web and found answers for my problem who seem to work for others. but not for me. I'm building an iPad app (Xcode 4.3.3 using storyboards) in landscape view (right) It launches in landscape-view…
0
votes
3 answers

landscape splash screen for iphone apps?

i am developing an app which supports all orientations. i need to launch the splash screen (launching image) in all orientation types. but the project summary have only one field (portrait) to set the Default.png. how will i launch the landscape…
neerajPK
  • 293
  • 1
  • 4
  • 17
0
votes
2 answers

Weird landscape UITabBarController Application startup

My application is quite simple, but I have some problems when it starts. I setted in the Info.plist to be landscaped, but it seems to ignore the order. In fact, when the app is loading the Simulator is landscaped, but then it returns in portrait…
Stefano Verna
  • 642
  • 9
  • 23
0
votes
1 answer

Reset frames when rotating orientation

I have an app that has some buttons and a text view and a label. I want to rotate the device and have them redrawn on the screen to fit. I want to do it programatically. Currently I have these methods: …
marciokoko
  • 4,988
  • 8
  • 51
  • 91
0
votes
0 answers

SurfaceView force landscape

I want to force my game to run in landscape-mode, and all I can find are xml-tuts, but im not using xml, im using SurfaceView. So my question is, how do I change and force my game to run as landscape? I know about the…
Green_qaue
  • 3,561
  • 11
  • 47
  • 89