On Sep 26, 2015, at 12:00 PM, Programmingkid <programmingk...@gmail.com> wrote:
> 
> I did try using a separate thread, but that caused part of the application to 
> stop responding to events. 

A background thread will *not* cause your application to stop responding to 
events. You need to go back and look more closely at what was happening there. 

Did you block on the main thread waiting for the background thread to finish? 
Of course waiting in the main thread would stop event processing, so you would 
need to post an event from the background thread when it is done, not block on 
the main thread. (Alternatively, you could have the main thread somehow check 
periodically if the bg thread is done, but in most cases calling 
performSelectorOnMainThread from the bg thread is a very easy way to get 
results back into the main thread, much easier than having the main thread 
"poll", and worrying about correct synchronization of that polling.)

-- 
Scott Ribe
scott_r...@elevated-dev.com
http://www.elevated-dev.com/
https://www.linkedin.com/in/scottribe/
(303) 722-0567 voice






_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to