当前位置:  开发笔记 > 前端 > 正文

当用户完成在NSTableView中编辑单元格时,如何收到通知?

如何解决《当用户完成在NSTableView中编辑单元格时,如何收到通知?》经验,为你挑选了1个好方法。

我需要知道用户何时完成在NSTableView中编辑单元格.该表包含所有用户的日历(从CalCalendarStore获取),因此为了保存用户的更改,我需要通知CalCalendarStore更改.但是,在用户完成编辑后我找不到任何被调用的东西 - 我猜想在表的委托中会有一个方法,但我只看到一个在编辑开始时调用,而不是在编辑结束时调用.



1> Milly..:

NSTableView通过使用NSNotificationCenter或使用NSControl方法,您可以在不进行子类化的情况下实现相同的结果.请在此处查看Apple文档:

http://developer.apple.com/library/mac/#qa/qa1551/_index.html

它只有几行代码,对我来说非常合适.


如果你可以是delegateNSTableView,你只需要实现的方法

- (void)controlTextDidEndEditing:(NSNotification *)obj { ... }

事实上,NSTableViewdelegate所述的NSControl它包含的元件,并且将那些方法调用到其delegate(但是也有一些有用的其它方法)

否则,使用NSNotificationCenter:

// where you instantiate the table view
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(editingDidEnd:)
    name:NSControlTextDidEndEditingNotification object:nil];

// somewhere else in the .m file
- (void)editingDidEnd:(NSNotification *)notification { ... }

// remove the observer in the dealloc
- (void)dealloc {
   [[NSNotificationCenter defaultCenter] removeObserver:self
    name:NSControlTextDidEndEditingNotification object:nil];
   [super dealloc]
}

推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有