Yes, you just need to make the target [myClass class] instead of myClass . Also, you forgot to use @selector() around the selector name. So you want:
[NSThread detachNewThreadSelector:@selector(myController) toTarget:[myClass class] withObject:nil];
source share