Mevcut iş parçacığının Objective-C'deki ana iş parçacığı olup olmadığını kontrol etmenin bir yolu var mı?
Bunun gibi bir şey yapmak istiyorum.
- (void)someMethod
{
if (IS_THIS_MAIN_THREAD?) {
NSLog(@"ok. this is main thread.");
} else {
NSLog(@"don't call this method from other thread!");
}
}