I want to pass two arguments to method with NSThread. I tried using this third answer. But unfortunatlly that code was not working well because andKeys:
method is not available.
[NSThread detachNewThreadSelector:@selector(DownloadCheckServerPath:DirectoryName:) toTarget:self withObject:"How to pass two objects"];
So how should I called -(void)DownloadCheckServerPath:(NSString *)serverPath DirectoryName:(NSString *)directoryName
this method in Sector through NSThread. ?