In my iPhone App I have used shake gesture it is working but it requires lots of efforts to shake.
Is there any way to make it more sensitive?
Here is the code
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (motion == UIEventSubtypeMotionShake)
{
[self performSelector:@selector(startPressed:)];
}
}