iOS開發多線程篇—創建線程

一、創建和啓動線程簡單說明 一個NSThread對象就代表一條線程 創建、啓動線程 (1) NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil]; [thread start]; // 線程一啓動,就會在線程thread中執行self的run方法 主線程相關用法 +
相關文章
相關標籤/搜索