Question

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) {


        }
    }
}
Was it helpful?

Solution

Remove the delegate:

[UIAccelerometer sharedAccelerometer].delegate = nil;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top