Top "Cgaffinetransform" questions

The CGAffineTransform represents a matrix used for affine transformations.

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 …

iphone objective-c uiview cgaffinetransform
How do I use CGAffineTransformMakeScale and Rotation at once?

((UIImageView*)[dsry objectAtIndex:0]).transform = CGAffineTransformMakeRotation(1.57*2); ((UIImageView*)[dsry objectAtIndex:0]).transform = CGAffineTransformMakeScale(.5,.5); Just one of these works at a time. How can …

iphone core-graphics cgaffinetransform
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 …

objective-c math cgaffinetransform
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 …

objective-c ios cgaffinetransform
Animation Grow/Decrease Size imageView iOS

I'm trying to animate a custom button using CGAffineTransformMakeScale as follows: if (stateButton == 0) { //The button is gonna appear self.selected = …

ios uiimageview cgaffinetransform cgaffinetransformscale
About CGAffineTransformMakeRotation rotation direction?

I'm trying to use CGAffineTransformMakeRotation, and I refer Apple document which says The angle, in radians, by which this matrix …

ios cgaffinetransform
CGAffineTransform and scaling to center of the image

I started studying objective-c using the iPhone and iPad apps for Absolute Beginners by Rory Lewis book but i got …

iphone ios scaling cgaffinetransform
Find Frame Coordinates After UIView Transform is Applied (CGAffineTransform)

I rotate my view with CGAffineTransform [view setTransform:newTransform]; The frame values remain the same after transform is applied but …

iphone ios objective-c uiview cgaffinetransform
CGAffineTransform scale and translation - jump before animation

I am struggling with an issue regarding CGAffineTransform scale and translation where when I set a transform in an animation …

ios xcode scale transformation cgaffinetransform
Rotate a UIlabel to make it vertical

I have a UILabel. I need to rotate it programmatically. I have my horizontal UILabel, for example with frame: x:0, …

ios objective-c uilabel cgaffinetransform