Tagged Questions
1
vote
2answers
41 views
Fail to jump from a portrait view to a landscape view
Everyone. I've got two views. The first view supports only landscape orientation and the second view supports all orientations. However, when the second view is portrait and a button is pressed, it ...
0
votes
1answer
23 views
snapping uiview to particular angle when rotating, locks it and cannot move again
I only want use to be able to rotate to 0 degrees, 90 degrees, 180 degree, 270 degrees, not in-between. But even after rotating, I want the user to not be locked in to their rotating and rotate once ...
0
votes
1answer
30 views
IOS resize UI after rotation (Is fill parent possible in IOS)
Is it possible to make textfield or other UI to fill screen width? Something like "match_parent" or "fill_parent" in Android.
..
If not, is it a right solution to use ...
0
votes
1answer
67 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
63 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
51 views
Radians value went wrong for CGAffineTransformRotate
I'm trying to rotate the bicycle wheels when I rotate the pedal.
When I rotate counterclockwise, there is no problem.
But when I rotate clockwise for about 2-3 secs, the image starts to rotate ...
0
votes
1answer
44 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
1answer
97 views
Rotating/moving one uiview and moving others at same time [closed]
This is my first question here and I'm a newby to iOS programming.
I've searched all over the web, with many tips coming from stackoverflow. Ive searched through the Xcode help and watched video's ...
0
votes
1answer
131 views
UIView added on top of window does not rotate on iOS
I have a tabBar based application and want to present some custom view above whole screen (not as modal view) and I do it like that:
[self.view.window addSubview:self.myViewController.view];
The ...
0
votes
2answers
121 views
iOS - UIView subclass won't rotate with device
I have a custom UIView that I use to display synchronization in my device, but it won't rotate with the device when the orientation changes.
Everything else rotates just fine, is there something I am ...
1
vote
1answer
130 views
How to use CGRectContainsPoint() with rotated UIView
I have a UIView, and the user can tap the UIView to 'select' or highlight the in-app 'thing' that it represents. I use CGRectContainsPoint(thing.frame,tapPoint) to achieve this, where thing.frame is ...
0
votes
0answers
77 views
How to center the MPmovieplayer view added as a subview of UIview? So that the movie is played in the center of the device screen?
I have a container view that has two subviews 1) movieplayer view 2)flipview. On loading the view the movie is set to autoplay. The user can click a button to flip to flipview displaying image.
I am ...
0
votes
1answer
188 views
Interface rotation work on iOS 6 but non on iOS5
My app rotation is working correctly on iPad 3 and iPad 2 with iOS6 but not on iPad1 with iOS5.
I'm using a tab bar controller and 5 view controller. On each view controller i have this code:
- ...
1
vote
1answer
191 views
iOS Truncated Views while rotating, have to reset view.bounds
I've been adding support for rotation for an app recently and it has been a pain. One thing I'm finding that's fairly consistently annoying is that one of my views shifts up by about 50 pixels or so ...
0
votes
1answer
153 views
UIToolbar Rotation/Animation
I have a UIToolbar for an iPad app that is meant to stay at the top of the screen for all orientations. The UIView that my UIToolbar is part of does not rotate, however. The UIToolbar DOES rotate, ...
2
votes
1answer
320 views
Rotate UIView to give perspective
I want to change the perspective of a UIView that is in my Viewcontroller. I think that I have to transform this UIView layer, but I don't know how.
I've tried the following code but it is not ...
1
vote
1answer
163 views
Do not rotate UIView but rotate UIImageView's inside it
I know there's lots posted about it, but I can't find the best solution.
I have a "holder" view (UIView) that contains many scrollViews stretching horizontally in Landscape mode. Each scrollview ...
0
votes
0answers
206 views
iOS 6 Rotation creates large white spaces on screen
I have an app which uses a Tab Bar as well as a Nav Bar. Both of these are to be shown while in portrait mode but are to go hidden when I push my landscape view controller in my ...
0
votes
0answers
47 views
How to determine UIView orientation/heading?
In my app I'm rotating a UIView according to a Iphone heading(heading from CLLocationManager).
I'm rotating this UIView with this function:
[UIView ...
0
votes
2answers
421 views
Manually Rotating UIViews Instead of Autorotation
In iOS, what is the proper way to manually rotate your views? I have a lot of custom rotation animations and I don't want my view to autorotate at all.
Right now, I'm doing this...
- ...
1
vote
1answer
195 views
How to resize the view when transform property is not the identity transform
I have a requirement in which i need to implement the feature to re size, rotate and move the view. i have implemented all three features but i am struggling with one issue for past one week i could ...
0
votes
1answer
545 views
How to resize the UIView when CGAffineTransformIdentity
I am doing an app which has a feature to rotate and re size a view. i have implemented this feature but i do face an issue.
My problem
The View wil be resized when dragging its four corners, after ...
0
votes
1answer
76 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 ...
1
vote
2answers
8k views
Handling iDevice rotation on iOS 6
I'm having trouble figuring out how to handle device rotation on iOS 6. I have three things that need to change separately when the device is rotated.
I have a parent UIViewController that handles ...
0
votes
0answers
14 views
Want UIView to allow for scrolling only when rotated and content is displayed horizontally
I have a UIViewController that displays the content I need but when rotated horizontally it is cut off. Can I implement a scroll view only when it is rotated? How would I do that?
1
vote
1answer
82 views
Rotating UIView with button in it
I'm trying to rotate a UIview which has in the top left corner a UIButton with the action:
NSLog@"hello";
Now I rotate the UIView 180° and the button is now in the right bottom corner. But the ...
0
votes
2answers
502 views
How to detect rotation for a programatically generated UIView
I have a UIView that's programmatically being created:
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
if (self) {
...
0
votes
0answers
96 views
Changes UIView‘s frame lead to subviews disordering?
I reset the view's frame to move it to a new position after the device rotates. It works on changing the view's position, but the subviews all go to wrong position.
And I tried another way using the ...
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
2answers
91 views
View isn't rotating properly
I have this code inside a UIViewController subclass:
- (id)init {
self = [super init];
if (self) {
self.view.frame = [PDToolbox screenFrame];
...
0
votes
1answer
165 views
Rotation a view from Landscape to Portrait
I have a view A and a view controller B, when View A exit (device in Landscape, view A overlay on B), I want to transform B to Portrait(device keep in Landscape, so B should be in Landscape before ...
1
vote
3answers
536 views
UIView in front of everything not rotating with screen?
I have this code:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
imageView.image = [UIImage imageNamed:@"image.png"];
UIApplication *app = ...
0
votes
0answers
20 views
Rotating Uiview From Top to Bottom Direction
I need to rotate uiview from top to bottom direction.
i m creating cube. which has 6 side.
how i rotate from top to bottom or bottom to top.
i m using CAtransform3D.
0
votes
1answer
757 views
Handling rotation UIView programmatically
At the very first start-up, the App handles a housekeeping of a database. it takes a while an, therefore, I'added a translucentview with a spinner and a label telling the user what's going on.
In ...
0
votes
0answers
112 views
iOS/Cocoa Speed up large amount of UIView (When rotating, moving)
I have about 100 UIView's on the screen. Each view is same. One view consist of 2 UIImageViews inside. When user touches to the UIView I'm rotating 2nd UIImageView 0-360 degrees, or user can move it. ...
1
vote
2answers
139 views
Multiple Views in same XIB. issue when rotate view and change view
i have a problem.
my viewController's Xib has multiple UIView.
the app starts in portrait mode and i can rotate it into landscape.
- ...
0
votes
1answer
126 views
populate entire landscape screen with new uiview upon device orientation change from portrait to landscape
So my iPhone application currently has a tabviewcontroller that populates the entire screen. The app only runs in portrait mode. My task has been to detect device orientation changes, and once it ...
0
votes
1answer
822 views
Rotating a UIView through 360 degrees and more
I'm pretty confused by radians at the best of times, so I tend to work in degrees when I'm rotating UIViews. So far I've been using the following formula to convert degrees to radians:
#define ...
1
vote
2answers
298 views
Calculating the CGAffineTransform matrix after rotating the superview
This one is tricky!
I have view A and view B which is a subview of view A. The frames of both views are constant.
I rotate view A by changing the transform-matrix:
viewA.transform = ...
0
votes
1answer
307 views
Rotate UIView with offset
I am writing a MonoTouch iOS application.
I have a group of 4 UIButtons on my main View. They are more or less in a horizontal row. I want to rotate them by an angle (between -90 and +90 degrees) as ...
1
vote
1answer
94 views
Load different views after rotation
I have a view controller which contains a ScrollView and an array of views on that. When i rotate the device a strange situation happens with the frames of my view. I googled and Stackoverflow'd, i ...
2
votes
1answer
358 views
Rotating a UIView around a bouncing ball on iPad
I'm having a problem with rotating a view around a bouncing ball.
So far I have 2 UIViews within a ViewController. One of the views contains a CALayer with a quartz drawing of a ball on it. The other ...
1
vote
1answer
629 views
UIView flip vertically
I know it's probably a dummy question, but I have to ask: How to flip a UIView vertically? I'm not asking for doing a animation, but just flip it.
I can do vertical flip a UILabel by:
...
1
vote
1answer
337 views
Rotate UIView and keep aspect ratio after rotation
I want to rotate a UIView, but after the rotation the view is resized. I am using the autoresizing flag 'UIViewAutoresizingNone'.
Here is my code: (called from layoutSubViews)
- (void) ...
0
votes
1answer
97 views
Trying to figure out a rotation issue in iOS
I am having trouble in fixing a problem with my iPad app.
I am loading a photo view controller when pressing a button on my main view controller.
In portrait mode the view controller loads fine, but ...
0
votes
1answer
458 views
Create fullscreen UIView on rotatable UIViewController
I have a UIViewController which supports all interface Orientations. The views are created programatically in the loadView() which works so far. All the views added in the loadView() method have the ...
0
votes
1answer
561 views
Getting subview location after superview rotation
I have a UIView which has several subviews that respond to touch. If I rotate the layer of the superview with some code like this:
[CATransaction begin];
[CATransaction setDisableActions:true];
...
1
vote
1answer
224 views
Rotating a UIView; How to prevent clipping during rotation?
So let's say I have a UIView that in its standard configuration spans the full width and height of its container. For the purposes of this question, let's say that its dimensions are 320x400. ...
8
votes
1answer
4k views
After rotation UIView coordinates are swapped but UIWindow's are not?
Using Xcode 4.2.1 iPad iOS 5.0.1, create a new "Single View" iPad project. In the controller, add:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
...
2
votes
3answers
1k views
antialiasing edges of UIView after transformation using CALayer's transform
I have a UIView object that rotates using CALayer's transform:
//creating uiview object
UIImageView *block=[[UIImageView alloc] initWithFrame....]
//rotating
CATransform3D basicTrans = ...
