বর্তমান থ্রেডটি উদ্দেশ্য-সি এর মূল থ্রেড কিনা তা যাচাই করার কোনও উপায় আছে কি?
আমি এরকম কিছু করতে চাই।
- (void)someMethod
{
if (IS_THIS_MAIN_THREAD?) {
NSLog(@"ok. this is main thread.");
} else {
NSLog(@"don't call this method from other thread!");
}
}