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?
| |||||||
feedback
|
|
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.
| |||||||||||||||||||
feedback
|
|
Here is a nice Delayed Blocks NSObject category to add a | |||||
feedback
|
|
You can use In XCode 4.2 the default autocomplete option after typing
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. | |||
|
feedback
|
|
Perhaps simpler than going thru GCD, in a class somewhere (e.g. "Util"), or a Category on Object:
So to use:
| |||||
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. | |||
|
feedback
|
|
How about something like this:
| |||||||||||||||||||
feedback
|