从nstextfield到nstableview的通知

时间:2013-02-11 13:12:43

标签: objective-c cocoa nstableview nsdatepicker

我有一个文字日期选择器。在选择日期之后,我的nstableview必须加载值。我应该如何使用通知来实现这一目标?我试过了,

 -(void)controlTextDidEndEditing:(NSNotification *)notification
  if ([notification object] == _toDate)   //_toDate is the value which i select from date picker
  {
     //Loading table view with values.
  }

但它不起作用。

0 个答案:

没有答案