C'è un modo per verificare se il thread corrente è o meno il thread principale in Objective-C?
Voglio fare qualcosa di simile.
- (void)someMethod
{
if (IS_THIS_MAIN_THREAD?) {
NSLog(@"ok. this is main thread.");
} else {
NSLog(@"don't call this method from other thread!");
}
}