I have implemented that the device aligned horizontal by using accelerometer. When the device is exactly horizontal that time the ball will be at center position. see how i have achieved it by below code.

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration 
{
    ball.velocity = CGPointMake((acceleration.x / .5), (acceleration.y / .5));      
}

Now i need is to make device flat to vertical surface. I have tried for using the accelerometer but failed to achieve that.

Please give your suggestion how we can achieve that?

link|improve this question

78% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.