Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
496 views

How to block until certain notification is posted in Cocoa?

What's the best way to sleep/wait until certain notification is posted? I've got class with asynchronous API that gets data from NSNotification (notification comes from Cocoa, I can't avoid it) and I ...
0
votes
2answers
154 views

How can I call Method while app is in background in iOS?

I have one class name as myClassCalculate have the following method - (void) accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration { NSLog(@"Accelerometer is ...
0
votes
1answer
100 views

Fixing an iPhone crash with a run-loop stack trace

I'm using hoptoad to track errors in my iPhone app. One crash that's happened a number of times (14, to be exact), has this stack trace: https://gist.github.com/2ce8a88c07fc134a3d9c I'm not even ...
0
votes
3answers
939 views

Do Cocoa applications have a main loop?

On Linux under X11 and using GTK+ you have something called "Main Loop". Once you start the main loop you have a timer that runs in the main thread of the application. You can set that timer to a ...