App receives event from child thread, but we need to send it to main thread to do UI update issue, current now use method dispatch_async, dues to main thread is very busy, for some case it will cost two or three seconds to arrive at the destination, slow, try to improve, but so far no better method found, any idea or discussion will be appreciated, thanks in advance.

dispatch_async(dispatch_get_main_queue(), ^{ handleLoginOK(value); });
link|improve this question

41% accept rate
Need more information. – livingtech Jan 16 at 15:43
We use event bus model, receive event from child thread, in order to do corresponding UI change according to the event, we need to send the event data to main thread. – jianhua Jan 17 at 2:27
feedback

1 Answer

Look into -performSelectorOnMainThread:withObject:waitUntillDone: it may or may not be faster, I am not completely sure.

link|improve this answer
Have tried, a little faster, not much improvement, the precondition is that main thread is always very busy which is a factor that the delay is so obviously. – jianhua Jan 17 at 2:29
feedback

Your Answer

 
or
required, but never shown

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