vote up 0 vote down star

Hi,

In Java you can suspend the current thread's execution for an amount of time using Thread.sleep(). Is there something like this in Objective C?

Thanks!

flag

75% accept rate

3 Answers

vote up 9 vote down

Yes, there's -[NSThread sleepForTimeInterval:]

(Just so you know for future questions, Objective C is the language itself; the library of objects (one of them at least) is Cocoa.)

link|flag
vote up 7 vote down

Why are you sleeping? When you sleep, you are blocking the UI and also any background URL loading not in other threads (using the NSURL asynchronous methods still operates on the current thread).

Chances are what you really want is performSelector:withObject:AfterDelay. That's a method on NSObject you can use to call a method at some pre-determined interval later - it schedules a call that will be performed at a later time, but all of the other stuff the thread handles (like UI and data loads) will still continue.

link|flag
vote up 3 vote down

Of course, you could also use the standard Unix sleep() and usleep() calls, too. (If writing Cocoa, I'd stay with the [NSThread sleepForTimeInterval:], however.)

link|flag

Your Answer

Get an OpenID
or

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