I have a textual Date picker. After the date is getting selected, my nstableview has to get loaded with values. How should i use notification to achieve this? I tried with,
-(void)controlTextDidEndEditing:(NSNotification *)notification
if ([notification object] == _toDate) //_toDate is the value which i select from date picker
{
//Loading table view with values.
}
But it didn't work.