例如我有一个看起来像这样的方法
[self performSelectorOnMainThread:@selector(someMethod)
withObject:data
waitUntilDone:YES];
其中“someMethod”来自另一个类。如果有可能,我该怎么做?另外,我想知道如何传递参数。
假设 someMethod 被定义为:
- (void)someMethod:(NSData *)data otherArg:(NSString *)arg;