up vote 1 down vote favorite
1
share [g+] share [fb]

I rotate/scale a UIVIew using [UIView transform:] and this works well. However, as soon as I change the view's frame origin the contents of the view begins to scale 'weirdly' even though I am not performing any further CGAffineTransforms.

Why does this occur? How can I prevent it?

Update 1:

The docs suggest that the frame is invalid after a transform. Can I move the view via it's 'center' property instead?

Update 2:

Setting the views center did allow me to translate the view successfully after a transform had been applied.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Can I move the view via it's 'center' property instead?

The documentation defines the center property as:

The center of the frame.

and says:

The center is specified within the coordinate system of its superview.

I'd try it.

link|improve this answer
Tried it - it worked. – teabot Jun 28 '09 at 18:46
feedback

From the UIView docs:

transform:

Warning: If this property is not the identity transform, the value of the frame property is undefined and therefore should be ignored.

The center property is just a convenience method that really resets the frame's origin.

Edit: appended to answer comment:

If you're using the transform property and want to reposition your view, you have to concatenate the translation to your transform using:

view.transform = CGAffineTransformTranslate(view.transform, tx, tx);
link|improve this answer
I which case - how can I reposition the view? – teabot Jun 26 '09 at 9:10
I did try translating the view with an affine transformation but that created lots of complications which required me to manipulate the views anchor point. – teabot Jun 28 '09 at 18:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.