Reputation: 3026
I'm looking to call a method after dispatch_after_seconds completes.
dispatch_after_seconds
dispatch_after_seconds(0.1, ^{ [self doTask]; }
how can i call a method so that it is executed after this is finished?
Upvotes: 0
Views: 37
Reputation: 3763
dispatch_after_seconds(0.1, ^{ [self doTask]; [self doYourTask]; }
Upvotes: 3