NSOutlineViewDelegate - 需要类似 didFinishEditing 的东西
NSOutlineViewDelegate
有 outlineView:shouldEditTableColumn:item:
在编辑单元格之前被调用。我需要在用户完成编辑单元格后调用类似的方法(以便触发一些计算)。我应该去哪里寻找这个活动?
NSOutlineViewDelegate
has outlineView:shouldEditTableColumn:item:
which gets called before editing a cell. I need a similar method called after the user has finished editing a cell (in order to trigger some calculations). Where should I look for this event ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需实现
-outlineView:setObjectValue:forTableColumn:byItem:
数据源方法,即可修改传入的对象。Just implement the
-outlineView:setObjectValue:forTableColumn:byItem:
datasource method and you can modify the object that is passed in.