I'm having trouble firing a performSelector afterDelay command, upon detection of an accelerometer 'flick'. The movement is detected ('Got here' is logged), but for some reason the selector passed to the performSelector command is not firing.
I set up a test block, and successfully ran a performSelector from that, so I don't think blocks themselves are causing the problem, perhaps it's something to do with the thread that CoreMotion is running on? (I must admit to being slightly hazy on blocks/threads/CoreMotion)
Any clues would be much appreciated. Thanks.
- (void)viewDidLoad
{
[super viewDidLoad];
//Do any additional setup after loading the view, typically from a nib.
motionManager = [[CMMotionManager alloc] init];
if(motionManager.accelerometerAvailable)
{
motionManager.accelerometerUpdateInterval = 0.1;
NSOperationQueue *motionQueue = [[NSOperationQueue alloc] init];
[motionManager startAccelerometerUpdatesToQueue: motionQueue withHandler: ^(CMAccelerometerData *data, NSError *error)
{
float accelerationThreshold = 1.2;
CMAcceleration userAcceleration = data.acceleration;
if (fabs(userAcceleration.x) > accelerationThreshold)
{
NSLog(@"Got here"); //runs
[self performSelector:@selector(test) withObject:nil afterDelay:1.0];
}
}];
}
}
-(void) test
{
NSLog(@"perform selector after delay worked"); //doesn't run
}