pthread : posix thread的简称
导入头文件
#import <pthread.h>```
###1. 创建线程
```objc
/* 第一个参数: 线程指针
第二个参数:线程的属性
第三个参数:只想函数的指针
第四个参数:函数的传值
*/
int pthread_create(pthread_t * __restrict, const pthread_attr_t * __restrict, void *(*)(void *), void * __restrict);
// 使用
void * run(void *param) {
NSLog(@"子线程被调用了");
return NULL;
}
// 子线程1
pthread_t thread1;
pthread_create(&thread1, NULL, run, NULL);
// 子线程2
pthread_t thread2;
pthread_create(&thread2, NULL, run, NULL);