NSIncation 是否保留 self、_cmd 和分配的参数?
我将 NSIncation 添加到字典中以执行我需要的一些命令,但我担心 NSInitation 会保留它获得的参数,例如 self、_cmd 和我设置的参数。当我将 NSInitation 添加到字典时,字典将保留 NSInitation,并且它也保留这些参数吗?
I added NSInvocation to a dictionary to execute some commands I need, but I am afraid of the NSInvocation will retain the arguments it obtained, for example, self, _cmd, and the arguments I set. When I add NSInvocation to a dictionary, the dictionary will retain the NSInvocation, and does it retains those arguments too ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSInitation
不会不会保留目标、选择器或参数,除非您向其发送
retainArguments
消息,这会将argumentsRetained
设置为YES
。NSInvocation
does not retain the target, selector or arguments unless you send it theretainArguments
message, which will setargumentsRetained
toYES
.