Top "Nsrunloop" questions

NSRunLoop is a class in Apple's Foundation framework.

Stop an NSRunLoop from a timer

I've made a RunLoop with a timer that updates a label that displays a countdown. I need the RunLoop to …

cocoa timer nstimer nsrunloop runloop
How to "validate" a NSTimer after invalidating it?

So basically, I have this timer that should be repeated when it receives a key event, and invalidates when the …

objective-c cocoa nstimer nsrunloop
PerformSelector After delay doesn't run in background mode - iPhone

I have a voip application which runs constantly on the background as well. While I'm in the background I'm calling …

iphone objective-c ios4 nstimer nsrunloop
Timer in another thread in Objective - C

I have to define method which should be invoked periodically with some time interval. I need to invoke it in …

ios objective-c nstimer nsrunloop nsblockoperation
Multiple locks on web thread not allowed! Please file a bug. Crashing now

i make a url-Request and waiting for the answer with I start the request, then waiting until synchronousOperationComplete=TRUE NSRunLoop *…

objective-c nsurlconnection nsrunloop
iOS, NSURLConnection: Delegate Callbacks on Different Thread?

How can I get NSURLConnection to call it's delegate methods from a different thread instead of the main thread. I'm …

ios nsurlconnection nsrunloop
need some clarifications about dispatch queue, thread and NSRunLoop

The following things are what I know & understand: Global queue is a concurrent queue which can dispatch tasks to …

ios multithreading grand-central-dispatch nsthread nsrunloop
CFRunLoopRun() vs [NSRunLoop run]

I have an NSRunLoop object, to which I attach timers and streams. It works great. Stopping it is another story …

macos foundation core-foundation nsrunloop cfrunloop
What does NSRunLoop do?

I read many posts about NSRunLoop, like this, this, this. But can't figure out what NSRunLoop actually does What I …

ios port nsthread nsrunloop
How to make NSRunLoop work inside a separate thread?

Please look at this code: @interface myObject:NSObject -(void)function:(id)param; @end @implementation myObject -(void)function:(id)…

iphone objective-c nsthread nsrunloop