我做了一个 NSDictionary 将我的输入(NSString)转换为选择器。“选择器映射”如下所示:
[self setCmdSelectorMap:[NSDictionary dictionaryWithObjectsAndKeys:
[NSValue valueWithPointer:@selector(doOpenBrowserByString:)], @"openBrowser",
[NSValue valueWithPointer:@selector(syncData:)], @"sync",
[NSValue valueWithPointer:@selector(getCachedString:)], @"getCachedString",
nil]];
当我尝试获取其中一个选择器并按以下方式执行时,会导致警告:
sel = [[_cmdMap objectForKey:command] pointerValue];
NSLog(@"selector determined : %@", NSStringFromSelector(sel));
[self performSelector:sel withObject:arguments];
警告说: PerformSelector 可能会导致泄漏,因为它的选择器是未知的。有什么办法可以防止这个警告的发生吗?还是有任何“更安全”的方式来执行这样的操作?
多谢你们 :)