Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How could I make an image move from the bottom of the screen in 20 to the top of the screen ( that is about 35 px per second ). I don't mean you need to drag it by yourself but it should automatically move to the top.

Thnx

share|improve this question

2 Answers

up vote 8 down vote accepted

Firstly, apple doc is your friend. All of the information I'm giving you here is derived from this. Apple also provides a LOT of sample code, and you should definitely take a look at it.

The way you can (easily) accomplish this is using UIView animations. Assuming that you have a UIImageView for your image, you can use the animateWithDuration:(NSTimeInterval)duration animations:... method.

For example:

[UIView animateWithDuration:10.0f animations:^{
    //Move the image view to 100, 100 over 10 seconds.
    imageView.frame = CGRectMake(100.0f, 100.0f, imageView.frame.size.width, imageView.frame.size.height);
}];

You could get fancier by adding more and more options to the animation, getting a completion block, etc. This is all achieved with variations of the 'animateWithDuration' method. There are tons of tutorials on UIView animations out there, and tons of documentation.

If you don't want to use blocks (the ^{ ...code...} bit above) you can run your animation like this:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:10.0f];
imageView.frame = ...
[UIView commitAnimations];
share|improve this answer
Thanks man, you really. Helped me out with this! I will search for the apple samples and view there vids! – Xcodeuser Apr 9 '12 at 13:04

If I understand it you can do an animation of your own object, in this case try the beginAnimation

...
initial position

[UIView beginAnimation];
[UIView setAnimationDuration:dim/35.];
[UIView setAnimationCurve:[UIViewAnimationCurveLinear];

your animation

[UIView commitAnimations];
...

with this calculation dim/35 calculations by the second place to get your animation 35px / s

share|improve this answer
Thanks man, you're really helpfull! – Xcodeuser Apr 9 '12 at 13:05

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.