在我的编码经验中,我第一次在目标 C 中处理线程。在我的应用程序中,我需要在两个线程中下载一些资产。下载完成后,我必须启动我的主线程,这将在线程中使用下载的资产。所以我写了一些这样的代码
NSThread *threadPlayer1 = [[NSThread alloc]initWithTarget:self selector:@selector(getPlayer1Assets) object:nil];
[threadPlayer1 start];
NSThread *threadPlayer2 = [[NSThread alloc]initWithTarget:self selector:@selector(getPlayer2Assets) object:nil];
[threadPlayer2 start];
[self performSelectorOnMainThread:@selector(introducePlayer1) withObject:nil waitUntilDone:YES];
我将 waituntilDone 写为 Yes,但它只等到第一个线程完成。所以如果我想等到所有两个线程都完成我该怎么办?任何人都可以通过示例代码片段提出建议。