I have a class which inherits NSThread:
@interface MyService : NSThread {
...
}
In another class, I get a instance of MySerivce
:
MyService *service = [self getServiceInstance];
// here, how can I get the NSRunLoop instance out from service ?
I want to get the NSRunLoop
instance of service
, how to get it?