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

I have an app that plays audio in the background. I'm trying to use beginBackgroundTaskWithExpirationHandler to skip to the next track when the current track is finished.

Here is the code that is called when the playback state changes. It never logs the "beginBG called" even though other code in the same method implements successfully in the background.

UIApplication *app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
    [self ffwButtonPressed:ffwButton];
    NSLog(@"beginBG called");
    [app endBackgroundTask:bgTask];
    bgTask = UIBackgroundTaskInvalid;
}];

ffwButtonPressed invokes a few different methods to change the track. When that is complete...

UIApplication *app = [UIApplication sharedApplication];
    if (bgTask != UIBackgroundTaskInvalid) {
        [app endBackgroundTask:bgTask]; 
        bgTask = UIBackgroundTaskInvalid;
        NSLog(@"end bgTask");

Edit: Declaration

UIBackgroundTaskIdentifier bgTask;

Edit: In ViewDidLoad

bgTask = 0;
share|improve this question

3 Answers

up vote 6 down vote accepted

You are actually misunderstanding the function -(UIBackgroundTaskIdentifier)beginBackgroundTaskWithExpirationHandler:(void (^)(void))handler

The block argument called "handler" is what will happen when the background task expire (10min).

To get your code running you need to put your code out of the expiration handler:

UIApplication *app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
    bgTask = UIBackgroundTaskInvalid;
};

[self ffwButtonPressed:ffwButton];
NSLog(@"beginBG called");
[app endBackgroundTask:bgTask];

Here is a link to the documentation

share|improve this answer

I ended up not needing beginBackgroundTaskWithExpirationHandler at all. This line solved my problem...

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];  
share|improve this answer

Is this all your code? Maybe the bgTask variable is not initialized, You need to declare bgTask before you assign. Try this -

UIBackgroundTaskIdentifier bgTask = nil;
share|improve this answer
I'm getting this error when I try to init... Incompatible pointer to integer conversion initializing 'UIBackgroundTaskIdentifier' (aka 'unsigned int') with an expression of type 'void *'; – mnort9 Jul 23 '12 at 18:06
BTW, I edited in my declaration, but I did not set it to nil. – mnort9 Jul 23 '12 at 18:07
3  
UIBackgroundTaskIdentifier is an NSUInteger, not an object. Set it to an integral value, not nil. – Josh Caswell Jul 23 '12 at 18:24
@mnort9 yes josh is correct. init UIBackgroundTaskIdentifier to integer, then see what you get. – Srikar Appal Jul 23 '12 at 18:37
I set bgTask = 0 in ViewDidLoad. beginBackgroundTaskWithExpirationHandler is still never called. – mnort9 Jul 23 '12 at 19:16

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.