Check whether or not the current thread is the main thread

前端 未结 13 1034
北恋
北恋 2020-12-02 11:42

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         


        
13条回答
  •  猫巷女王i
    2020-12-02 12:27

    Have a look at the NSThread API documentation.

    There are methods like

    - (BOOL)isMainThread

    + (BOOL)isMainThread

    and + (NSThread *)mainThread

提交回复
热议问题