非常简单的代码:
queue = [[NSOperationQueue alloc] init];
[queue addOperationWithBlock:^{
NSLog(@"%@", [NSThread mainThread]? @"main" : @"not main");
}];
打印“main”。
为什么呢?是不是假设在异步运行bg线程,除非我调用[NSOperationQueue mainQueue]
?
答案 0 :(得分:6)
[NSThread mainThread]
总是返回一个对象(因此在转换为YES
时会产生BOOL
),因为程序运行时有一个主线程。
如果要检查当前线程是否是主线程,则需要使用currentThread
的{{1}}方法。
NSThread
NSLog(@"%@", [[NSThread currentThread] isEqual:[NSThread mainThread]]
? @"main" : @"not main");
有更好的方法;看来你可以使用NSThread
方法检查当前线程是否是主线程:
isMainThread
用户@borrrden指出,你只需要使用if ([[NSThread currentThread] isMainThread]) {
//
}
,
[NSThread isMainThread]