Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently working on a music player app, and like the iPod application, I would like to shuffle songs with shake gesture.

I'm implementing motion methods like Apple recommends to, and in foreground everything works fine.

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event;
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event;
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event;

But I just can't figure out how to call those methods from background. I've looked all over the internet, and there's not threads about this.

first things first: is it possible?

Thanx!

share|improve this question
I don't think you app will recieve these call when running in the background. – rckoenes May 2 '11 at 15:17
Another kind of methods then? Is there a way to detect motion gesture from background? If Apple does it, there might be a way! :P – DZenBot May 2 '11 at 15:20
If Apple does it, does not mean you are allowed to do it. The Shake for next song only work when I have to iPod app open. – rckoenes May 2 '11 at 15:23
You are so dem right! Shake only works while app is open... I always thought that worked both ways. Thank you! I have now have the task to explain it with dumb words to my client :P – DZenBot May 2 '11 at 15:38
That's a common pain for all iphone developers :) – Gorky Mar 4 '12 at 10:47

1 Answer

up vote 6 down vote accepted

It's not possible now, whether you use iOS 4 or any lower SDK version.

share|improve this answer

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.