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?