Difference between NSThread and detachNewThreadSelector:toTarget:withObject:
- by ryyst
Hi,
In the NSThread documentation, I came across the method detachNewThreadSelector:toTarget:withObject:.
What's the difference between that method and creating a thread with initWithTarget:selector:object: and then starting it with start?
Thanks!
-- Ry