Ok, I know this has been asked before and I have tried many different methods to make this work but for some reason it won't. I am trying to save a string to a label's text property. The label is in a child view controller called tableVC within a container view and I am setting it from the parentViewController, ViewController in an IBAction when the value of a UIDatePicker, datePicker is changed. I have tried:
tableVC *tVC = [[tableVC alloc] init];
tVC.timeLabel.text = [formatter stringFromDate:self.datePicker.date];
and have also tried making a property @property (strong, nonatomic) tableVC *tVC; then doing:
_tVC = [tableVC alloc] init];
_tVC.timeLabel.text = [formatter stringFromDate:self.datePicker.date];
but that doesn't work either. BTW, I have #import "tableVC". I don't want a complicated delegate or protocol way of doing it as I'm thinking I am just making a noob mistake. Also, I have confirmed that [formatter stringFromDate:self.datePicker.date] does return the proper, non nil, formatted, value from the datePicker, using NSLog(@"%@", [formatter stringFromDate:self.datePicker.date]);.
Edit
Here is a little more information along with the entire files. The table is a static table defined in Storyboard. I thought this could be the cause of the problem but even when I substituted out the tableVC for a subclassed UIViewController with only one label it did not work. I think the problem lies in how I set the child view controller properties. However, I do not have this problem when using the prepareForSeque method in other projects. I can set values for properties of the destination controller no problem but not values for properties of view controllers which are not the destination controller. I think these two problems coincide. All connections were made properly through Storyboard.
ViewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
ViewController.m
#import "ViewController.h"
#import "tableVC.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIView *containerView;
@property (weak, nonatomic) IBOutlet UILabel *testLabel;
@property (weak, nonatomic) IBOutlet UIDatePicker *datePicker;
- (IBAction)changedDatePickerSelection:(id)sender;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
tableVC *tVC = [[tableVC alloc] init];
[self addChildViewController:tVC];
[tVC didMoveToParentViewController:self];
NSLog(@"parent");
}
- (IBAction)changedDatePickerSelection:(id)sender
{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.timeZone = [NSTimeZone defaultTimeZone];
formatter.timeStyle = NSDateFormatterShortStyle;
formatter.dateStyle = NSDateFormatterMediumStyle;
tableVC *tVC = (tableVC *)self.childViewControllers.lastObject;
tVC.timeLabel.text = [formatter stringFromDate:self.datePicker.date];
_testLabel.text = [formatter stringFromDate:self.datePicker.date];
NSLog(@"%@", [formatter stringFromDate:_datePicker.date]);
NSLog(@"%@", tVC.timeLabel.text);
}
@end
tableVC.h
#import <UIKit/UIKit.h>
@interface tableVC : UITableViewController
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@end
tableVC.m
#import "tableVC.h"
#import "ViewController.h"
@interface tableVC ()
@property (weak, nonatomic) IBOutlet UITextField *titleTextField;
@property (weak, nonatomic) IBOutlet UISwitch *onOffSwitch;
@property (weak, nonatomic) IBOutlet UIButton *saveButton;
- (IBAction)saveAlarm;
@end
@implementation tableVC
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.timeZone = [NSTimeZone defaultTimeZone];
formatter.timeStyle = NSDateFormatterShortStyle;
_timeLabel.text = [formatter stringFromDate:[NSDate date]];
NSLog(@"%@", _timeLabel.text);
}
- (BOOL)textFieldShouldReturn:(UITextField*)aTextField
{
[aTextField resignFirstResponder];
return YES;
}
- (IBAction)saveAlarm
{
// do something
}
@end
Also, here are my two images to show how the testLabel from the ViewController is updated when the datePicker's selection is changed, but how the timeLabel from the tableVC was not. The first image is before the change of selection and the second is after. For clarification, the timeLabel is the label on the right side of the third cell and the testLabel is the one directly above the datePicker.
http://cl.ly/image/2Q301v0d2m00
http://cl.ly/image/0223183E1t2m
Thanks for any help.

timeLabelproperty look like? – mkral Nov 21 '12 at 20:58@property (weak, nonatomic) IBOutlet UILabel *timeLabel;– MusicMathTech Nov 21 '12 at 22:03tableVCprogrammatically or with InterfaceBuilder? If you're using interface builder, are you connecting all your outlets? – mkral Nov 21 '12 at 22:26