Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a CGRectMake that used to jump an image to a different position

image.frane=CGRectMake( x,y,w,h);

Then I wanted to translate and scale a Label (on the same ViewController) to another position

CGPoint newCenter = CGPointMake(x,y);
[UIView animateWithDuration: 1.0
    delay: 0
    options: 0
    animations:^{label.center = newCenter ; label.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.2, 0.2);}
                     completion:^(BOOL finished) {
                         label.transform = CGAffineTransformMakeScale(1.0, 1.0);
                         label.alpha = 0;
    }
];

The problem I'm having is when I use the animateWithDuration the image doesn't move but the Label does. If I comment out the animation the image moves again. Am I doing something wrong?

share|improve this question
will you please elaborate your question and code.? – Harish Saran Jan 10 at 10:48
is image.frane a typo here? – Andrew Tetlaw Jan 10 at 12:03
Also is this an iOS6 app and are you using auto layout? – Andrew Tetlaw Jan 10 at 12:40

1 Answer

up vote 0 down vote accepted

try this bellow code...

[UIView animateWithDuration:1.0f animations:^{
    imageView.frame = CGRectMake(newCenter.x, newCenter.y, imageView.frame.size.width, imageView.frame.size.height);
}];

Also you can move UIImageView or anything else with this bellow code... i use this code for scroll the UIScrollView when keyboard appear.. i add the code with your requirement..

UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0f];
imageView.frame = CGRectMake(newCenter.x, newCenter.y, imageView.frame.size.width, imageView.frame.size.height);
[UIView commitAnimations];

i hope this helpful to you...

share|improve this answer
1  
Thanks that has them working. Although if I add the line to the setAnimation _label.transform = CGAffineTransformMakeScale(0.2,0.2); it stops working the first time again – harbourmaster Jan 10 at 11:10
yes dude thats why its not working :) – Paras Joshi Jan 10 at 11:12
What would be the best way of adding a scale to the CGRectMake? I haven't really used these before but it seems adjusting the frame width and height applies immediately not over time. – harbourmaster Jan 10 at 11:21
what your mean dude?? – Paras Joshi Jan 10 at 11:28
I'm looking to translate and scale a label at the same time so maybe from pos 100 100 to 200 200 and scale to 0.5 The code UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:1.0f]; imageView.frame = CGRectMake(newCenter.x, newCenter.y, imageView.frame.size.width, imageView.frame.size.height); [UIView commitAnimations]; Moves the object but it doesn't scale it right? – harbourmaster Jan 10 at 11:30
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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