Tag Archives: NSThread

IOS多线程-NSThread

NSThread类,直接操作线程,适合将一个需要长时间运行的任务放到一个子线程中。

NSThread.detachNewThreadSelector("go", toTarget: self, withObject: nil)

private func go(){
    print[......]

Read more