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.

Im trying to move an image around with the accelerometer by doing that:

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration {

    image.center = CGPointMake(acceleration.x, acceleration.y);

}

When i test the app, the image that is supposed to move around just sits in the x0 y0 position.

I declared the accelerometer, called the .h UIAccelerometerDelegate and so on...

What am i doing wrong?

Thanks in advance! -DD

share|improve this question

2 Answers

up vote 3 down vote accepted

You do realize that the accelerometer returns, as the name would suggest, measures of acceleration not points on the display? Anyway, what you need to do, is alter the center (not replace it completely), which will allow you to move the image.

Something along these lines:

image.center = CGPointMake(image.center.x + acceleration.x, 
                           image.center.y - acceleration.y;

It is also important to note that the acceleration usually stays between -1 and 1 (unless the user shakes the device), which is due to the gravity being 1G. Therefore you should probably multiply the acceleration.x and .y values with some constant to make the image move a bit faster than about 1 point at a time.

There are additional things you should think about, what if the image is at the edge of the screen? What if the user wants to use the app in some other position than flat on a surface (needs calibration of the accelerometer)?

share|improve this answer
lol XD i didn't realize that at all... Btw there's a strabge thing happening: the x movement works perfectly but the y movement is reverse. why is that? – DailyDoggy May 7 '11 at 23:04
sry... didn't think before asking... It's image.center.y - acceleration.y not +. – DailyDoggy May 7 '11 at 23:08
Yeah, this picture helps to explain why developer.apple.com/library/ios/documentation/uikit/reference/… The y axis in the accelerometer is reversed compared to the display y axis. – Henri Normak May 8 '11 at 0:36
 -(void)moveImage:(id)sender 
 {
       [operationView bringSubviewToFront:[(UIPanGestureRecognizer*)sender view]];

       [[[(UIPanGestureRecognizer*)sender view] layer] removeAllAnimations];

CGPoint translatedPoint = [(UIPanGestureRecognizer*)sender translationInView:self.view];

if([(UIPanGestureRecognizer*)sender state] == UIGestureRecognizerStateBegan)
{
    firstX = [[sender view] center].x;
    firstY = [[sender view] center].y;

    [imgDeleteView setHidden:FALSE];
}
else if ([(UIPanGestureRecognizer*)sender state] == UIGestureRecognizerStateEnded)
{
    [imgDeleteView setHidden:TRUE];
}

translatedPoint = CGPointMake(firstX+translatedPoint.x, firstY+translatedPoint.y);

[[(UIPanGestureRecognizer *)sender view] setCenter:translatedPoint];
}
share|improve this answer

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.