Monday, December 13, 2010

Some Notes on Threading

Brent Simmons:

KVO is a trickier thing. Here’s how I handle that: anything happening in a background thread is not observable (by convention). Whatever is going on is private. When it’s time to set public stuff, stuff that could be observed, those things are set on the main thread.

Some good techniques for keeping things simple.

Comments RSS · Twitter

Leave a Comment