Is there a way to call a block with a primitive parameter after a delay, like using performSelector:withObject:afterDelay: but with an argument like int/double/float?

link|improve this question

0% accept rate
Can answer not be marked as correct here? – Ross Nov 16 '11 at 13:16
@Ross: Does it need to be? I think 91 upvotes more than signifies a correct answer. – FreeAsInBeer Apr 23 at 13:37
@FreeAsInBeer true, it is helpful when searching however. – Ross Apr 24 at 16:49
feedback

6 Answers

I think you're looking for dispatch_after(). It requires your block to accept no parameters, but you can just let the block capture those variables from your local scope instead.

int parameter1 = 12;
float parameter2 = 144.1

// Delay execution of my block for 10 seconds.
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 10 * NSEC_PER_SEC), dispatch_get_current_queue(), ^{
    NSLog(@"parameter1: %d parameter2: %f", parameter1, parameter2);
});
link|improve this answer
The problem is if any of the block's variables refer to autoreleased objects, those objects may be gone by the time the block is started. In contrast performSelector:withObject:afterDelay: retains all its parameter until after the selector is performed. – adib Nov 20 '10 at 7:43
18  
Actually, that's not true. Objects captured by a block that are not marked as being in __block storage are retained by the block, and get released by the block when it is destroyed (when its retain count goes to 0). Here's the documentation on that: developer.apple.com/library/mac/documentation/Cocoa/Conceptual/… – Ryan Nov 23 '10 at 22:32
3  
There's nothing nasty about it; that's the way the API works. If you'd like to, though, you could make a macro to just, say, always create a dispatch time in seconds: #define DISPATCH_SECONDS_FROM_NOW(s) dispatch_time(DISPATCH_TIME_NOW, (s)ull * NSEC_PER_SEC), which could be used like so: dispatch_after(DISPATCH_SECONDS_FROM_NOW(10), dispatch_get_current_queue(), ...your block here...) – Ryan Jun 25 '11 at 22:12
2  
Yes, dispatch_get_current_queue() always returns the queue from which the code is being run. So when this code is run from the main thread, the block will also be executed on the main thread. – Ryan Sep 26 '11 at 17:48
1  
Very cool, it seems that (under ARC) the dispatch_after retains the block until it executes it. This eliminates so much complicated code... – Yar Mar 8 at 0:34
show 5 more comments
feedback

Here is a nice Delayed Blocks NSObject category to add a performBlock:afterDelay: method.

link|improve this answer
Hi, I thought this was neat, but then I was left wondering why this was created as a method of NSObject since it doesn't reference anything from any class and should be static – Nektarios Mar 9 at 17:50
@Nektarios It's a mimic of performSelector:withObject:afterDelay: defined in an NSObject category. – nonamelive Apr 17 at 9:59
feedback

You can use dispatch_after to call a block later.

In XCode 4.2 the default autocomplete option after typing dispatch_after results in the following:

double delayInSeconds = 2.0;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
    <#code to be executed on the main queue after delay#>
});

You don't have to rely on any type of macro, and the intent of the code is quite clear.

Lastly, as @Ryan said the block will capture the local scope so you don't have to worry about passing in arguments.

link|improve this answer
+1 for cleanly showing the use of dispatch_time() – Jason Whitehorn Feb 22 at 17:53
feedback

Perhaps simpler than going thru GCD, in a class somewhere (e.g. "Util"), or a Category on Object:

+ (void)runBlock:(void (^)())block
{
    block();
}
+ (void)runAfterDelay:(CGFloat)delay block:(void (^)())block 
{
    void (^block_)() = [[block copy] autorelease];
    [self performSelector:@selector(runBlock:) withObject:block_ afterDelay:delay];
}

So to use:

[Util runAfterDelay:2 block:^{
    NSLog(@"two seconds later!");
}];
link|improve this answer
2  
@Jaimie Cham Why do you think going through GCD is difficult? – Besi Dec 22 '11 at 12:48
feedback

You can either wrap the argument in your own class, or wrap the method call in a method that doesn't need to be passed in the primitive type. Then call that method after your delay, and within that method perform the selector you wish to perform.

link|improve this answer
feedback

How about something like this:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, NULL),
^{
    sleep(delay);
    [self selector:primitive];
});
link|improve this answer
2  
Ryan's answer is cleaner, and probably more performant, because it uses GCD's built-in dispatch sources functionality. – Brad Larson Nov 9 '10 at 23:06
2  
No argument here; this was a two-second off-the-top-of-my-head idea. dispatch_after() is the way to go. – Jeff Kelley Nov 10 '10 at 2:41
3  
Nice use of sleep to block the UI thread there. – Max Howell Feb 4 at 1:49
2  
@MaxHowell I don't think it will block the UI thread. dispatch_get_global_queue will return a background queue. – nonamelive Apr 17 at 10:02
Yes, @nonamelive is right, I think. The global queues are in a background thread. Probably, I couldn't be bothered to read the docs thoroughly. I assumed they would be on the UI thread like NSOperationQueue mainQueue is. – Max Howell Apr 19 at 21:59
feedback

Your Answer

 
or
required, but never shown

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