NSTreeController 获取添加的子项
当 NSTreeController -(void)addChild:(id)sender
被调用时,有没有办法获取创建的 NSManagedEntity
?
文档提到此方法的结果被推迟到下一个循环运行。
When NSTreeController -(void)addChild:(id)sender
is called, is there a way to get the NSManagedEntity
that was created?
The documentation mentions that the result of this method is deferred to the next loop run.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有,因为在该方法返回之前不会创建该对象。在内部,
NSTreeController
应该调用此方法:您可以重写它以发挥您的优势吗?
No there isn't, because the object won't be created until after that method has returned. Internally,
NSTreeController
should call this method:Can you override that to your advantage instead?