hi i want iphone detect shake gesture only one time .
after iphone had been shaken and html files showed , then i want iphone doesn't detect shake anymore .
here is my code :
- (void)accelerometer:(UIAccelerometer *)accelerometer
didAccelerate:(UIAcceleration *)acceleration {
{
if (acceleration.x > kAccelerationThreshold
|| acceleration.y > kAccelerationThreshold
|| acceleration.z > kAccelerationThreshold) {
}
}
}