I need to detect when the gyroscope / accelerometer is activated a certain amount. Basically to detect when there is movement of the device. I don\'t know anything about Cor
In viewDidAppear
, become the first responder:
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self becomeFirstResponder];
}
And make sure you can be first responder:
- (BOOL)canBecomeFirstResponder {
return YES;
}
Then you can implement the motion detection.
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (event.subtype == UIEventTypeMotion){
//there was motion
}
}