Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
13k views

iPhone Curl Left and Curl Right transitions

I am looking for a way to do a UIViewAnimationTransitionCurlUp or UIViewAnimationTransitionCurlDown transition on the iPhone but instead of top to bottom, do it from the left to right (or top/bottom ...
6
votes
1answer
4k views

Convert coordinates between parent/child UIView after CGAffineTransform

Before I go into doing everything by hand I would like to ask if there is some help to get from the framework. I have a UIView that holds another UIView with a map. The parent UIView holds some ...
5
votes
1answer
405 views

Rotating an image 90 degrees on same position when orientation changes

THIS IS SOLVED! Ended up with doing this: Easiest way to support multiple orientations? How do I load a custom NIB when the application is in Landscape? Works superb! I have made an image ...
5
votes
1answer
3k views

How do I use CATransform3D on a UIView to add a specific type of perspective?

I've been creating iPhone apps for a while now, using basic transformations (rotations, scale, etc) but now I'd like to do something a little more complex. Maths really isn't my strongest point... ...
4
votes
1answer
3k views

(Scale) Zoom into a UIView at a point

I've been stuck on this for days. Something I don't understand about transformations. I want to zoom in to say the top right corner of a UIView (the main view). I use CGAffineTransformScale and have ...
4
votes
1answer
712 views

iPhone/iPad Pan, Pinch and Rotate a view simultaneously

I'm trying to recreate the behaviour of the photos app, where you can pan, pinch and rotate simultaneously. I have the basics working, but I'm stuck on something. For the pan, I offset the ...
3
votes
1answer
298 views

Applying transform to UITextView - prevent content resizing

When I apply a rotation transform to a UITextView and then click inside to begin editing, it appears that the content size is automatically being made wider. The new width of the content view is the ...
3
votes
1answer
474 views

Weird behavior of UIView frame after rotation in iPhone

Create a square UIView object testView_, and add this at viewDidLoad: - (void)viewDidLoad { [super viewDidLoad]; CGRect initialRect = testView_.frame; NSLog(@"before rotation: w %f h %f x %f y %f", ...
3
votes
4answers
3k views

Max/Min Scale of Pinch Zoom in UIPinchGestureRecognizer - iPhone iOS

How would I be able to limit the scale of the UIPinchGestureRecognizer to a min and max level? The scale property below seems to be relative to the last known scale (the delta from last state) and I ...
3
votes
3answers
2k views

Get just the scaling transformation out of CGAffineTransform

I found a similar question about getting just the rotation, but as I understand scaling and rotating work different in the transform matrix. Matrixes are not my strength, so if anybody would hint me ...
2
votes
1answer
98 views

CGAffineTranformRotate atan2 inaccuration

I'm making transition of my view and always happens something weird, I mean I calculate angle using this code: angle = atan2f(currentTouchPoint.y - center.y, currentTouchPoint.x - center.x) - ...
2
votes
1answer
117 views

Applying scaling and rotation on a view using CGAffineTransform

So I need to apply some scaling and some rotation to a view (I do this using gestures), so for each gesture I update the current scalling and rotation values with something like: self.scaleWidth *= ...
2
votes
0answers
137 views

EAGLView with CGAffineTransform problem on iOS 4.3

I have a weird problem with OpenGL on iOS 4.3. I have a ViewController with some views and images in the foreground. In the background I have an EAGLView drawn from a CGImage. When I try to pinch, ...
2
votes
0answers
146 views

Pinch-to-zoom UILabel

I'm handling a pinch gesture and I scaling an UILabel like this: CGFloat factor = sender.scale; view.transform = CGAffineTransformScale(view.transform, factor, factor); The problem is when I ...
2
votes
1answer
159 views

Autorotation distorts a rotated view in iPhone

I use the view-based template to create my app, and return YES in shouldAutorotateToInterfaceOrientation to support auto-rotation. Next, I add a square testView_ object (with default auto-resizing ...
2
votes
1answer
511 views

when to use CABasicAnimation and CAKeyFrameAnimation and CGAffineTransform?

when to use CABasicAnimation and CAKeyFrameAnimation and CGAffineTransform?
2
votes
1answer
721 views

setTransform:CGAffineTransformMakeScale - Alternatives when trying to scale an UIView

I use the following to scale a view to 3x its original size: [pageShadowView setTransform:CGAffineTransformMakeScale (3, 1)]; I would like to have a method which tests if my UIView (pageShadowView) ...
2
votes
0answers
253 views

iPad - CGAffineTransformMakeRotation - keeping rotation

I have a heads up display (HUD) that I'm trying to get to properly rotate with the view. I created a function orientationWillChange that is supposed to rotate the view and that works fine, just ...
2
votes
1answer
140 views

iPhone positioning a UIImageView with code? Sure it's simple to solve

This is very simple so I'm not sure why I can't do this. All I want to do it position some UIImageViews when my app becomes active. I had been using CGAffineTransformMakeTranslation but I can now see ...
2
votes
1answer
447 views

Duplicate layers drawn with a UIImageView and CGAffinetransform

I am having an issue applying a transform to a UIImageView's layer. Using the code below, I am trying to rotate this needle, but I am getting duplicate copies drawn. I have checked that there is no ...
2
votes
0answers
324 views

Transform (rotate) a UIBarButtonItem

Does anybody know how to transform a UIBarButtonItem ? I tried this but with no results :( It's not working on both UIBarButtonItem and its customview. [UIView beginAnimations:nil context:NULL]; ...
2
votes
1answer
365 views

CONFUSING : CGAffineTransform - rotation on uibutton resizes buttonimage ?! (iPad)

i've got a strange problem using uibuttons, type custom. i'm placing 4 of those buttons on a scrollview, rotating each button by a random angle using CGAffineTransform. now it seems, that the buttons ...
2
votes
1answer
1k views

iPhone: Scale UIView about a specific point

I want to animate the scaling down of a UIView, but not about its center: about a different point. As a shot in the dark, I tried translating the view, scaling, then translating back, using a series ...
2
votes
4answers
3k views

Get size of UIView after applying CGAffineTransform

I was surprised not to find an answer to this question, maybe is something very simple I somehow overlook : How to get the real size of an UIView after I apply a CGAffineTransform to it? eg. my ...
1
vote
1answer
22 views

Reset view after UIRotationGesture

I have a UIRotationRecognizer on an UIImageView. After I rotate the view I would like to commit the changes so that next time I rotate the image it rotates naturally. Currently, with the code below, ...
1
vote
2answers
61 views

drawInRect behavior with UIView rotation transform

I have a problem understanding how the parameter passed to the drawInRect method is defined when a rotation transformation is performed on a UIView. To give an example I have a UIView which I rotated ...
1
vote
2answers
108 views

iPhone/iPad - Core Animation - CGAffineTransformMakeTranslation doesn't modify the frame

I'm facing a very annoying problem. Here's the context : I have a "rectangle" view which is the subview of the main view. What i'm trying to do is simple, when I click on a button, I want the ...
1
vote
1answer
143 views

CGAffineTransformMakeRotation of a CALayer

I create a layer and I set a frame for it. Then I apply a CGAffineTransformMakeRotation to it. The result of this is a squeezed object because the frame remains the same. How do I rotate the layer and ...
1
vote
2answers
123 views

Same CGAffineTransform different anchor

I have 1 view with 2 subviews. One of them being 10 times bigger than the other one. I have a gesture recognizer for the big one (which is on top). I want to be able to scale the big one with the ...
1
vote
0answers
110 views

Difficulty finding correct anchor point for rotation transforms

I'm animating a button's position, rotating it around a circle. This creates a UISwitch-like behavior, except it is a lot more fancy. The button rotates, but it ends up off the desired position by ...
1
vote
0answers
84 views

ImageView Jerks UITouch

I am implementing a UI element where the user can drag image views along the curve of a half-circle (almost looks like the bottom-half of a clock). While the image view moves I rotate it so that it ...
1
vote
1answer
356 views

CGRectApplyAffineTransform then CGAffineTransformInvert doesn't return to original position

This does not seem possible and I'm sure there's a simple solution but I cannot work it out. My High School matrix math is a bit rusty :) I'm building a CGAffineTransform to do ...
1
vote
1answer
108 views

MKMapview transform rotate only the map content

I need to transform-rotate a MKMapview based on the course of the CLLocations I get from CoreLocation. I basically have this already: mapview.transform = ...
1
vote
1answer
125 views

Animating a UIImageView

I am trying to animate my UIImageView so that it animates from height x to height y and I have the following code: - (void)viewDidLoad { [super viewDidLoad]; self.test = [self ...
1
vote
1answer
238 views

How to create multiple UIImageView animations, starting one animation after previous animation ends using CFAffineTransform

firstly thank you for reading my question. I'm current trying to execute multiple animations using CFAffineTransform to replicate the kens burn effect. Try to achieve: Zoom to to the image, then pan ...
1
vote
1answer
179 views

Preventing CGAffineTransform from applying incrementally

I'm using CGAffineTransformRotate and CGAffineTransformTranslate to animate the progress of a car image (UIImageView) across the screen. The animation is controlled by a UISlider so as the user ...
1
vote
1answer
141 views

Rotating a UIView with alpha = 0

I have a UIView that I rotate with this code: helpView.transform = CGAffineTransformMakeRotation(degreesToRadians( rotationAngle )); Where degreeToRadians just is a macro to convert from degrees to ...
1
vote
0answers
384 views

image rotation in touchesMoved scrubbing back and forth using CGAffineTransformMakeRotation is dropping the fps by half

in a 3D game, after optimization i have hit 60fps on an iPad2, the main runloop is in a secondary thread, with the interface builder built UI on the main thread, (this question is about the UI of ...
1
vote
3answers
1k views

CGAffineTransform Reset

3I have an image that gets manipulated by touch. Lets say its an image of an arrow that points up. After it's been rotated 180 degrees, so the arrow is pointing down now, I want to reset ...
1
vote
0answers
238 views

CGAffineTransformMakeScale and CoreGraphics

I've got a UIView overriding the drawRect: method. Now, when I'm doing view.transform = CGAffineTransformMakeScale(recognizer.scale,1.0); everything scales; the view itself as well as everything ...
1
vote
2answers
135 views

How do I get rid of these magic numbers in my rotation affine transform?

I have a view that is 320x460 (standard iPhone screen) that I want to draw as if it were in landscape mode, though the phone is not oriented that way. This seems like a simple task, which I tried to ...
1
vote
2answers
683 views

UIview core animation - rotate and setFrame at the same time

Hy, I my application I want to animate an UIView by changing it's position and rotation at the same time. The issue is that sometimes the animation is changing the width and height of the UIView. ...
1
vote
1answer
763 views

Limiting CGAffineTransform Scale

I am transforming a view with CGAffineTransformMake. It rotates, scales and translates. This works just fine. But I cannot figure out a way to limit the scale to a maximum size. If the scale is ...
1
vote
2answers
726 views

Smooth rotation of UIView with touch

I'm wondering how to smooth a UITouch in my code. I am able to detect the UItouch on my UIView, but when I try to rotate the view using CGAffineTransform, it does not rotate smoothly. I have to press ...
1
vote
3answers
1k views

UIView Rotation

Hello All I want to rotate UIView on single finger touch and it still rotate untill finger moves on screen of iPhone and it stops rotation when I stop the finger moving or remove it from screen. ...
1
vote
2answers
696 views

UIView Rotation using CGAffineTransform

I want to rotate an UIView using CGAffineTransform and I'm able to rotate View using CGAffineTransform. But I want to rotate UIView smoothly on finger touch based on swipe gestures. So like right ...
1
vote
3answers
2k views

How to move a UIImageView after applying CGAffineTransformRotate to it?

I'm building an iPhone app. I have a UIView that contains a set of UIImageView subclass objects. The user can drag and rotate the image views via touch. I'm having trouble moving the image view ...
1
vote
1answer
346 views

How to rotate ImageView about z axis+ iphone?

I have customized a carousel View(photo gallery) and when i scroll I want the images to rotate towards the back of the screen. To give the impression that the images are moving in a circular way. ...
1
vote
4answers
1k views

Animated moving and rotating a UIView doesn't quite work

I want to create an animation that moves and rotates a UIView at the same time. I tried the following code: [UIView beginAnimations:@"MoveAndRotateAnimation" context:nil]; [UIView ...
1
vote
1answer
935 views

Need examples for how to use CGAffineTransform in CGPaths

Please show some code or point to a good tutorial. I don't understand how to apply "CGAffineTransform" parameter that appears in practically every CGPath method, e.g.: void CGPathAddRect ( ...

1 2 3