Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

- (void) motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
    if (motion == UIEventSubtypeMotionShake){
        NSLog(@"Detected a shake"); }
}

This code NSLogs when shake began, or I can implement motionEnded and then it will NSLog when shake ends, but what I want is to execute code DURING shake (progress bar from 0 to 100 while iPhone is shaking).

Can you help me with that please?

share|improve this question

1 Answer

On the motion began callback you should create a thread which executes a function. That function should do what you want to do "during" the shaking. When the motionEnded callback is called you should terminate the thread.

Look at NSThread documentation for more information.

Most notably look at:

share|improve this answer
Yes, but the problem is that motionEnded is not recognized sometimes, it keeps running the function even if you don't shake it – 1337code Oct 22 '12 at 9:25
You should also listen for the -motionCancelled:withEvent:. Either that or -motionEnded:withEvent: will always be called. However looking closer at the documentation it looks like the shake gesture will be canceled if it "goes too long". I can't find a specific figure on how long "too long" is. If that is a problem you will have to listen to the accelerometer data more directly. – drewag Oct 23 '12 at 0:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.