Sparrow itself is not thread safe, so you must be a little careful with GCD.
You can use it, of course, but be sure not to call any methods on a Sparrow object from another thread. Always dispatch on the main queue (dispatch_get_main_queue()
) when you access Sparrow.
If I remember correctly, it's the same with UIKit objects.