The CGAffineTransform data structure represents a matrix used for affine transformations in Objective-C.

learn more… | top users | synonyms

0
votes
1answer
38 views

How Do You Combine Scale and Translation Animation

I am attempting to do an UIView animation where my image starts at the top left of the screen and expands to the original size and place in the middle of the screen. So far I have been able to make it ...
0
votes
1answer
19 views

iOS: rendering a subview at the proper resolution

I have a view which has a few subviews. I am using transforms to scale the view 400%, which works perfectly, but I am not sure how to scale the "drawing" of the sub-views. So when I render the scaled ...
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 ...
3
votes
0answers
37 views

Seemingly inexplicable result of CGAffineTransformInvert

Folks, [Edited at end to add new information] I am either at my wit's end or completely lacking in wits, not sure which, so any help would be loverly… I have two views in a container view. The ...
0
votes
1answer
20 views

transform rotation and translation issue

i have the following situation , i'm trying to make a photo editor and i need to do scale,translate and rotate operations for an image with around center of view the problem is that if i apply ...
0
votes
0answers
42 views

Adjust orientation on uiwindow using CGAffineTransformMakeRotation

Actually i want add a uiwindow which covers total screen with a view on it.i heard window doesnt support orientations,when i add window it is adding in potrait mode on my ipad,my app works only on ...
-1
votes
1answer
31 views

Dynamically scale and translate shape

I am drawing a series of UIBezierPath's, all of which have different sizes and locations. I would like to scale each shape to a specific size and move it to a specific location on a UIView. I am ...
0
votes
2answers
39 views

Translate UIView by dragging another UIView

Please refer to the image below for the following question: The blue and orange circles you see are UIView's. I would like to be able to drag the blue UIView which has a UIPanGestureRecognizer and ...
0
votes
1answer
30 views

Image Scaling when using CGAffineTransformMakeScale

I have this UIImageview, with an image. It's a small image, that is tiled with the resizableImageWithCapInsets method. It's very useful to do screen size independent images, and it works well: if ...
0
votes
1answer
40 views

CALayer rotate by direction

I'm trying to rotate a CALayer, first of all I rotate it by -30 degrees, so it turns left. [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.5]; self.transform = ...
-1
votes
1answer
73 views

Manually rotate the coordinate system for landscape mode left

I am aware that the upper left corner of the screen (assuming phone is held in landscape left) is (0,0). However, if I wanted my (0,0) point to be the bottom left corner instead of the upper left ...
0
votes
2answers
134 views

CGAffineTransformMakeScale not functioning properly

I am having trouble with CGAffineTransformMakeScale. I am displaying a view & hiding it using below code. For the first time it shows & dismissed perfectly. But after than its not showing up ...
0
votes
1answer
57 views

UITableView reorder button covering the entire cell

I've been trying to use this tutorial to make the reorder button cover the entire cell. It works great until the cell disappears from the view. Once you go back to the cell, the reorder button has ...
0
votes
0answers
77 views

How to use CGAffineTransformConcat properly, combine scale and rotate

I am creating view, then rotating them and flipping them. Seems to work to use CGAffineTransformConcat to combing the scales and rotation to get the result I expect, but I am running into some ...
0
votes
4answers
44 views

Cocoa Touch, set transform identity equal to current transform state

How do I change the transformIdentity. How do we set the transform "zero", or alter the transformIdentity of a view to the current state of the transform of said view. In other words, I want to scale ...
0
votes
1answer
108 views

ios - pinch/zoom an image, centered on touches

I can get pinch/zoom functionality working like this: - (void)twoFingerPinch:(UIPinchGestureRecognizer *)recognizer { if([recognizer state] == UIGestureRecognizerStateBegan) { _lastScale ...
0
votes
3answers
59 views

How to understand frames for UIViews with rotation transforms applied?

I've ran into a weird issue when executing the code below for a UIView with rotation transform applied. What I'm trying to do is remove the view from superview, then insert it under a specific view ...
0
votes
2answers
116 views

CGAffineTransform rotation and resize on slider value

I am using Slider to Resize and Rotate- For the Rotate - CGAffineTransform transform = editingView.transform; transform = CGAffineTransformMakeRotation(sliderVal * 2*M_PI / 30); ...
0
votes
3answers
59 views

Rotate UIButton and preserve its size

I am trying to rotate buttons, that are shaped as a square (65 x 65). After I rotate them, the buttons change their sizes. Is there any way, to make a rotation and keep the size? Code: [UIView ...
0
votes
0answers
132 views

iOS: Rotating a line with respect to a point that could be adjusted by touch

Man, have I been struggling with this... In reference to the image above, I have a line that is fixed to a specific point. At the other end of the line I have another point that is NOT fixed and ...
1
vote
1answer
49 views

How to animate CGAffineTransform smoothly as drag gesture is performed

I understand the various ways of detecting drag gestures just fine (currently I'm using a UIPanGestureRecognizer), but my understanding of transformations is limited, so I'm not sure if/how this is ...
1
vote
0answers
203 views

got a console error cgaffinetransforminvert singular matrix error?

I have tried to add UIImagePickerController to my app but got the error : CGAffineTransformInvert: singular matrix. but when I put VideoPicker.showsCameraControls = YES; the error ...
2
votes
1answer
167 views

How to apply a view transformation that works for a UIView to a NSView?

I have a view transform to make any UIView object follow a cocos2d node. Works fine on iOS, in this example the UIButton follows its Box2D body: Now for Mac I first verified that I have the overlay ...
0
votes
0answers
40 views

CGAffineTransformScale and orientation change

Good evening, I scale down a UIView by using CGAffineTransformScale. [UIView animateWithDuration:0.3 animations:^{ gridContainerView.transform = ...
2
votes
1answer
43 views

Bounds of a rotated UIView and Core Graphics

I have a subclass of UIView which is drawing a location icon. When I rotate the view a few degrees it's bounds (highlighted in green using CGContextAddRect) seem to change drastically causing my ...
0
votes
1answer
44 views

Repositioning UIWindow after Rotating it

Recently I made a custom Alert which is a subclass of UIWindow. I'm trying to rotate the alert when the UIViewController is in landscape orientation. I'm able to rotate it successfully, however I'm ...
1
vote
2answers
68 views

After rotation border of image is getting fuzzy ios

While developing a photography based app i need to rotate an image. But after rotating an image it's border gets fuzzy. i have attached screen shot of this.. As you can see first image looks good ...
1
vote
1answer
29 views

Does CGAffineTransform conform to ARC?

Just out of interest does ARC handle this or do you have to release the transform ? UISlider *slider = [[UISlider alloc] init]; CGAffineTransform transform = CGAffineTransformMakeRotation ...
0
votes
1answer
27 views

Generating hi-resolution image from transformed UIImageViews

I have been getting a trouble to generate hi-resolution image from transformed UIImageViews. I have a canvas view that contains several views transformed by user fingers. So I try to render the image ...
0
votes
1answer
77 views

UIView animateWithDuration returns to original state

So I needed to create a simple animation where a view flies off the screen and then flies back in again based on user gestures. My animation code (below) works really well. Actually it works a little ...
0
votes
1answer
38 views

iOS Non Affine Transform

Is it posible to do a non-affine transform in Core graphics? I want a perspective transform and can't seem to find any mention of something like it in the documentation.
0
votes
3answers
218 views

How do I calculate the affine translation parameters when rotating a view in iOS?

I have a UIToolbar in my iOS app that I rotate programmatically in the willRotateToInterfaceOrientation function using a CGAffineTransform. The transform requires scaling, rotation, and translation. I ...
0
votes
1answer
45 views

CGAffineTransformRotate behaviour inconsistent between view and view controller

I am trying to replicate Music.app's volume thumb reflections. I created a demo project to fine-tune the maths. At first, I was animating the views in the controller to keep it simple. After I had ...
1
vote
2answers
65 views

Preventing Subview from Transforming when its Superview Transforms

I have the following set up. I have a UIView called parentView that holds a UIView called childView. parentView can be rotated and resized using some touch gestures which need to be on the parentView. ...
1
vote
1answer
42 views

How to not animate transformation?

How can I not animate transformation during moving some frame? I have some block with animation: [UIView animateWithDuration:.2 animations:^{ self.center = [ViewController ...
0
votes
1answer
143 views

How to center scale (rotate) a UIImage in a UIImageView

I need to center and scale a UIImage in a UIImageView with contentMode UIViewContentModeTopLeft by only using CGAffineTransform. I can not use contentMode UIViewContentModeCenter because i need the ...
0
votes
1answer
112 views

Rotate Rectangle Around Its Upper Left Corner

Simply trying to rotate a rectangle around it's origin, or its upper left corner like so: Am using the following: panGestureRecognizer.view.transform = ...
0
votes
2answers
87 views

Hide Black Screen While Pushing ViewController With Animation

I am new to iOS development. I am using the following code: AskViewController *askController=[[AskViewController alloc]initWithNibName:@"AskViewController" bundle:nil]; askController.view.transform = ...
0
votes
0answers
68 views

How to move UIImageView in order to always keep image's head forward?

Assume I have an UIImageView in ViewController's view, and this UIImageView contains an image. As an example, let it be a car image with the car's head directing towards north by default. I want to ...
0
votes
1answer
218 views

angle between two point coordinates to rotate image accordingly

I have two points of CLLocationCoordinate2D, let's say A & B on my mapView. I would like an arrow-image to point from one point to another (A->B). I am unable to find the right angle to transform ...
0
votes
1answer
63 views

How to find the coordinates of UIImage after using CGAffineTransformMakeRotation on an object

I have an uiimage and i rotated the image using CGAffineTransformMakeRotation to the desired angle. Now i wanted to find out the new coordinates of the image that is new x position, y position, width, ...
0
votes
0answers
55 views

Getting CGAffineTransformInvert when tilting iPhone

whenever I tilt my iphone running my app I get the following message: ": CGAffineTransformInvert: singular matrix." I implemented an UIImagePickerController.. but even when I am disabling all ...
2
votes
1answer
53 views

Right way to transform the uibutton

When I made the transfrom UIButton background image showed ragged side My code is here: int r = arc4random() % 20 - 10; avatarImgBtn.transform = CGAffineTransformMakeRotation(degreesToRadian(r)); ...
0
votes
0answers
33 views

CGAffineTransformTranslate UIView center doesnt change

// NSTimer calls the method below every 0.2 secs. if (self.object.center.x > 0) { NSLog(@"%f",self.object.center.x); //always shows 276 , WHY???? [UIView ...
0
votes
1answer
91 views

iOS CGAffineTransform odd behavior

I am trying to simply animate a view from one position to a another, using the code below, but the animation is not smooth. There is a "pop" in the animation. It moves up quickly before moving down ...
0
votes
1answer
66 views

How is the in-call status bar impacting my CGAffineTransform'd view?

My app (target iOS 5+, uses ARC and storyboards, for the App Store) uses some rotation transforms. There's a bug where an in-call status bar (such as if there's an ongoing phone call or microphone ...
1
vote
1answer
172 views

iOS : apply affine transform to subview only

I'm have a view-parent with one background image, which scaled to whole parent view. Also in view-parent i need to display some other views. So when i apply rotation to image : [self.backgroundView ...
0
votes
1answer
111 views

Get angle of rotation after rotating a view

Let's say I rotate a view using the following method: CGAffineTransform t = CGAffineTransform.MakeIdentity(); t.Rotate (angle); CGAffineTransform transforms = t; ...
0
votes
0answers
59 views

iPad - CGContextShowTextAtPoint for multiline string

I am using following code snippet for drawing text: CGFloat DegreesToRadiansText(CGFloat degrees) {return degrees * M_PI / 180;}; CGContextSelectFont (context, "Arial Rounded MT Bold", 18, ...
1
vote
2answers
97 views

transform image when it hits the edge of the screen in iOS

I have 10 fireflies that I make "fly" around the screen using the code below. The code also serves to keep the fireflies on the screen. - (void)viewDidLoad { [super viewDidLoad]; NSArray ...

1 2 3 4 5 7