vote up 1 vote down star
2

Is there an easy way to achieve that?

I have an UIImageView that reacts on a touch event. When the touch is detected, some animations happen in the App. After one second I want to call another method. In this case, I can't use the animationDidStop selector.

flag

58% accept rate
3  
Just -1 for specifying your requirements after you collected four "into-the-dark"-answers. – Leonidas May 28 at 13:10

3 Answers

vote up 14 vote down check

performSelector:withObject:afterDelay

link|flag
2  
This is the correct answer. Please see developer.apple.com/DOCUMENTATION/Cocoa/…: – harms May 28 at 13:06
Perfect answer! Works perfectly. – Thanks May 28 at 13:09
1  
that's what you can get by providing a carefully phrased question in the first place :-) – none May 28 at 14:51
vote up 0 vote down

There are certainly several ways to do that, one of them might be to simply use sleep() to suspend the program/thread for a number of milliseconds, however I think you might want to tell us what exactly you're trying to accomplish by doing that? I mean, what is your actual problem? The idea of delaying a method call seems like a 'solution' to be, one that doesn't sound too good to be honest.

So, just tell us more about the scenario you have in mind.

link|flag
wow, I was downvoted 4 times for response, nobody seems to realize that the original question was VERY vague!! – none May 29 at 15:36
vote up 0 vote down

Make a call to sleep/wait/halt for 1000 ms just before calling your method?


Sleep(1000); // does nothing the next 1000 mSek

Methodcall(params); // now do the real thing


link|flag
that would stop just everything in the app, right? – Thanks May 28 at 12:59
Only in the current thread, other threads will continue to run. – Marc Charbonneau May 28 at 13:13

Your Answer

Get an OpenID
or

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