Is there some way when sending this message to specify that I rather have my selector performed after all pending UI events, if any? Ie. give my aterDelay timer a lower priority in the event queue.
|
|
|
|
|
|
|
Not directly. If you use However, you can achieve something similar using |
||
|
|
|
Actually,
If you want to perform a task in the background, you might look into In a comment above, you mentioned that you think animation may be at fault for making your UI unresponsive. If you're using the built-in support for animation (Core Animation or one of the Cocoa wrappers), animation shouldn't make your UI unresponsive. An unresponsive UI generally means that your program is doing a lot of work on the main thread before letting the run loop get back to service UI events. |
||
|
|
