I want to a "Shake Device" event to my app - i.e., when the user shakes the device something happens. I tried implementing:
-(void) motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (event.subtype == UIEventSubtypeMotionShake) {
//something happens
}
}
It doesn't seem to work.......
Does anyone knows which method I should use?
