I've researched a bunch of questions on how to do this, and am coming up just short.
I have ViewControllerA and ViewControllerB.
ViewControllerB is passing the NSDate from the UIDatePicker back to ViewControllerA.
I'm fine until trying to put that NSDate as a label in the TableViewCell it corresponds with.
Can you help? Thanks!
ViewControllerA
- (void)addItemViewController:(EXEDurationPickerViewController *)controller didFinishEnteringItem:(NSString *)item {
NSLog(@"This was returned from ViewControllerB %@", item);
}
item is the Date picked from ViewControllerB. How do I get it to show up as a label in the corresponding TableViewCell?