是否可以将选择器发送到另一个类并让它在另一个类上执行?
这似乎因错误而崩溃*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[webManager _selector]: unrecognized selector sent to instance
。如果这是不可能的,你会推荐什么作为替代方案?
这些方法按它们执行的顺序排列。
//in HomeViewController
-(void)viewDidLoad
{
WebManager *webManager = [[WebManager alloc] init];
URLCreator *urlCreator = [[URLCreator alloc] initWithParam:@"default"];
[webManager load:[urlCreator createURL] withSelector:@selector(testSelector)];
}
//in WebManager, which is also the delegate for the URL it loads when the load method is called...
-(void)load:(NSString*)url withSelector:(SEL)selector
{
_selector = selector;
[self load:url];
}
-(void)load:(NSString*)url{
NSURLRequest * request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:url]];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[connection start];
}
//now the delegate response, ALSO in WebManager
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
NSLog(@"Connection did finish loading. Parsing the JSON");
[self getJSONDict:rawData]; //parses the data to a dictionary
//perform the selector that is requested if there is one included
if (_selector)
{
NSLog(@"Performing selector: %@", NSStringFromSelector(_selector));
//the selector is called testSelector
[self performSelector:@selector(_selector)];
}
}
- (void)testSelector //also in the WebManager class
{
NSLog(@"Selector worked!");
}