Existe-t-il un moyen d'imprimer l'id du thread actuel sur lequel la méthode en cours s'exécute?
(objectif-c s'il vous plaît)
NSLog(@"%@", [NSThread currentThread]);
#include <pthread.h>
...
mach_port_t machTID = pthread_mach_thread_np(pthread_self());
NSLog(@"current thread: %x", machTID);
Dans Swift3
print("Current thread \(Thread.current)")
En rapide
print("Current thread \(NSThread.currentThread())")
Dans Swift4
print ("\ (Thread.current)")