Está en el camino correcto, sin embargo, todavía hay más cosas que hay que añadir para detectar sacudidas:
Esto se comprueba mediante la adición de un NSLog
a los métodos motionBegan
o motionEnded
, y en el simulador, presione CONTROL + COMMAND + Z
#pragma mark - Shake Functions
-(BOOL)canBecomeFirstResponder {
return YES;
}
-(void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:NO];
[self becomeFirstResponder];
}
-(void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:NO];
}
-(void)viewDidDisappear:(BOOL)animated {
[self resignFirstResponder];
[super viewDidDisappear:NO];
}
-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (motion == UIEventSubtypeMotionShake)
{
// shaking has began.
}
}
-(void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (motion == UIEventSubtypeMotionShake)
{
// shaking has ended
}
}
¡Perfecto! Muchas gracias ... – itsame69
canBecomeFirstResponder tiene sentido. –