Existe alguma maneira de verificar se o thread atual é ou não o thread principal no Objective-C? Eu quero fazer algo assim. - (void)someMethod { if (IS_THIS_MAIN_THREAD?) { NSLog(@"ok. this is main thread."); } else { NSLog(@"don't call this method from other thread!"); }...