我可以将 ObjectiveC @selector 放入 NSDictionary 中吗?
[actionMap setObject:@selector(actionNavPop) forKey:@"navPop"];
这是行不通的。 NSDictionary
只能保存对象,而 SEL
类型不是对象。
对于数字类型,您可以执行 [NSNumber numberWithInt:123]
但是否有任何类似的选择器对象包装器?
[actionMap setObject:@selector(actionNavPop) forKey:@"navPop"];
This doesn't work. NSDictionary
can only hold objects, and a SEL
type is not an object.
For number types you can do [NSNumber numberWithInt:123]
but is there any sort of similar object wrapper for selectors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSStringFromSelector() 和 NSSelectorFromString()。
Use
NSStringFromSelector()
andNSSelectorFromString()
.