我想使用 NSThread 将两个参数传递给方法。我尝试使用这第三个答案。andKeys:
但不幸的是,由于方法不可用,该代码无法正常运行。
[NSThread detachNewThreadSelector:@selector(DownloadCheckServerPath:DirectoryName:) toTarget:self withObject:"How to pass two objects"];
那么我应该如何-(void)DownloadCheckServerPath:(NSString *)serverPath DirectoryName:(NSString *)directoryName
通过NSThread在Sector中调用这个方法。?