我正在编写以下代码。
#import <objc/objc.h>
#import <Foundation/Foundation.h>
@interface myT :NSObject
-(void) startT;
-(void) tfun;
@end
@implementation myT
-(void) tfun
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Inside thread Function .. ");
[pool drain];
}
-(void) startT
{
[NSThread detachNewThreadSelector:@selector(tfun) toTarget:self withObject:nil ];
}
@end
int main ( int argc, char ** argv)
{
myT *t = [[myT alloc] init];
[t startT];
return 0;
}
它编译,并导致运行时错误。我做错了什么?我熟悉pthread。我怎样才能等到线程完成,即:pthread_wait 种类。