Is there any way to check whether or not the current thread is the main thread in Objective-C?
I want to do something like this.
- (void)someMethod
In Swift3
if Thread.isMainThread { print("Main Thread") }