将pthread_t转换为NSThread

时间:2016-11-01 15:29:40

标签: ios pthreads nsthread

我需要检查 pthread_t 是否为主线程。 我想从当前线程(不是来自 pthread_t ,我需要检查而不是主线程)来做。

我的代码( pt pthread_t

NSThread *thread = CFBridgingRelease(pt);  // it works wrong
bool isMain = thread.isMainThread;

但我无法将 pthread_t 转换为 NSThread

如何将 pthread_t 转换为 NSThread

或者我如何检查 pthread_t 是否是主线程?

0 个答案:

没有答案