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!

link|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 at 10:47
feedback

1 Answer

up vote 5 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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