回答:
のような方法があります
- (BOOL)isMainThread
+ (BOOL)isMainThread
そして + (NSThread *)mainThread
メインスレッドでメソッドを実行する場合は、次のことができます。
- (void)someMethod
{
dispatch_block_t block = ^{
// Code for the method goes here
};
if ([NSThread isMainThread])
{
block();
}
else
{
dispatch_async(dispatch_get_main_queue(), block);
}
}
NSOperationQueue.mainQueue().addOperationWithBlock { //your work here }
dispatch_sync()
代わりにを使用すると、コメントで指摘する点がより強くなりdispatch_async()
ます。
メインスレッドにいるかどうかを知りたい場合は、デバッガーを使用するだけです。興味のある行にブレークポイントを設定し、プログラムがそれに到達したら、これを呼び出します。
(lldb) thread info
これにより、現在のスレッドに関する情報が表示されます。
(lldb) thread info
thread #1: tid = 0xe8ad0, 0x00000001083515a0 MyApp`MyApp.ViewController.sliderMoved (sender=0x00007fd221486340, self=0x00007fd22161c1a0)(ObjectiveC.UISlider) -> () + 112 at ViewController.swift:20, queue = 'com.apple.main-thread', stop reason = breakpoint 2.1
値がいる場合queue
でcom.apple.main-thread
、あなたはメインスレッドにしています。
次のパターンは、メソッドがメインスレッドで実行されることを保証します。
- (void)yourMethod {
// make sure this runs on the main thread
if (![NSThread isMainThread]) {
[self performSelectorOnMainThread:_cmd/*@selector(yourMethod)*/
withObject:nil
waitUntilDone:YES];
return;
}
// put your code for yourMethod here
}
_cmd
スニペットをʕ•ᴥ•ʔに貼り付ける方法を自動的に使用します
void ensureOnMainQueue(void (^block)(void)) {
if ([[NSOperationQueue currentQueue] isEqual:[NSOperationQueue mainQueue]]) {
block();
} else {
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
block();
}];
}
}
これはより安全なアプローチであるため、スレッドではなく操作キューをチェックすることに注意してください
let isOnMainQueue =(dispatch_queue_get_label(dispatch_get_main_queue())== dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL))
import Foundation
extension DispatchQueue {
private struct QueueReference { weak var queue: DispatchQueue? }
private static let key: DispatchSpecificKey<QueueReference> = {
let key = DispatchSpecificKey<QueueReference>()
let queue = DispatchQueue.main
queue.setSpecific(key: key, value: QueueReference(queue: queue))
return key
}()
static var isRunningOnMainQueue: Bool { getSpecific(key: key)?.queue == .main }
}
if DispatchQueue.isRunningOnMainQueue { ... }
func test(queue: DispatchQueue) {
queue.async {
print("--------------------------------------------------------")
print("queue label: \(queue.label)")
print("is running on main queue: \(DispatchQueue.isRunningOnMainQueue)")
}
}
test(queue: DispatchQueue.main)
sleep(1)
test(queue: DispatchQueue.global(qos: .background))
sleep(1)
test(queue: DispatchQueue.global(qos: .unspecified))
--------------------------------------------------------
queue label: com.apple.root.background-qos
is running on main queue: false
--------------------------------------------------------
queue label: com.apple.root.default-qos
is running on main queue: false
--------------------------------------------------------
queue label: com.apple.main-thread
is running on main queue: true
Here is a way to detect what the current queue is
extension DispatchQueue {
//Label of the current dispatch queue.
static var currentQueueLabel: String { String(cString: __dispatch_queue_get_label(nil)) }
/// Whether the current queue is a `NSBackgroundActivityScheduler` task.
static var isCurrentQueueNSBackgroundActivitySchedulerQueue: Bool { currentQueueLabel.hasPrefix("com.apple.xpc.activity.") }
/// Whether the current queue is a `Main` task.
static var isCurrentQueueMainQueue: Bool { currentQueueLabel.hasPrefix("com.apple.main-thread") }
}
更新: @demostenで言及されたqueue.hヘッダーによると、それは正しい解決策ではないようです
最初に思いついたのは、必要なときにこの機能が次のようになっていたことです。
dispatch_get_main_queue() == dispatch_get_current_queue();
そして、受け入れられた解決策を見ていました:
[NSThread isMainThread];
鉱山のソリューションは2.5倍速くなります。
PSそして、はい、私はチェックしました、それはすべてのスレッドで機能します
When dispatch_get_current_queue() is called on the main thread, it may or may not return the same value as dispatch_get_main_queue(). Comparing the two is not a valid way to test whether code is executing on the main thread.