How to start a thread?

Submitted by: Muhammad
- (void)performSelectorInBackground:(SEL)aSelector withObject:(id)arg on NSObject
NSThread* evtThread = [ [NSThread alloc] initWithTarget:self
selector:@selector( saySomething )
object:nil ];
[ evtThread start ];
Submitted by: Muhammad

Read Online iOS Developer Job Interview Questions And Answers