Check whether or not the current thread is the main thread

前端 未结 13 1037
北恋
北恋 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条回答
  •  囚心锁ツ
    2020-12-02 12:08

    let isOnMainQueue = (dispatch_queue_get_label(dispatch_get_main_queue()) == dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL))

    check this answer from https://stackoverflow.com/a/34685535/1530581

提交回复
热议问题