I'm going to say no. Firstly, ACAccount does not appear in Apple "Thread Safe" . Secondly, I see no explicit mention of thread safety in the link for any of these classes. Thirdly, I see that TWRequest seems to be built on NSURLConnection , which is intended to be used in a startup loop (usually in the main thread). I see nothing to indicate that these classes are safe to use from multiple threads simultaneously. In the best case scenario, you should use a stream restriction approach (i.e., each stream extracts / creates its own copies of these objects and should not transfer them between threads.)
Since TWRequest is designed to work / runloop-based, I see no reason why you would need to do this stuff in the background thread, FWIW.
So yes. I would say no.
ipmcc source share