2 つのスレッドに 2 つの値のセットがあります。たとえば、1 番目のスレッドには奇数があり、2 番目のスレッドには偶数がありますが、1,2,3,4 のような値を出力したいと思います.....代わりにスレッド値を印刷する方法???
NSThread* myThread = [[NSThread alloc] initWithTarget:self selector:@selector(myThreadMainMethod:) object:nil];
[myThread setThreadPriority:1];
NSThread* myThread2 = [[NSThread alloc] initWithTarget:self selector:@selector(myThreadMainMethod2:) object:nil];
[myThread2 setThreadPriority:1];
[myThread start]; // Actually create the thread
[myThread2 start]; // Actually create the thread
ありがとう。