为什么这会在主线程上运行?

时间:2013-01-14 03:50:55

标签: ios objective-c cocoa-touch

非常简单的代码:

queue = [[NSOperationQueue alloc] init];
[queue addOperationWithBlock:^{
    NSLog(@"%@", [NSThread mainThread]? @"main" : @"not main");    
}];

打印“main”。

为什么呢?是不是假设在异步运行bg线程,除非我调用[NSOperationQueue mainQueue]

1 个答案:

答案 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]

请参阅NSThread documentation