I have an static UITableView with grouped cells, and an outlet for an UIImageView in the first group and I try to set its image on viewDidLoad like this
- (void)viewDidLoad {
[super viewDidLoad];
self.productImageView.image = [UIImage imageNamed:@"someImage"];
}
I found the productImageView (UIImageView) is nil but only on iOS7 (7.1.2), as far as I knew, it shouldn't be nil after viewDidLoad
Can anyone tell me why this is the only outlet is not loading from my storyboard?
Moving your code to the viewWillAppear will likely fix your issue, but that's not really the optimal solution. What if you add a call to
[self.tableView reloadData];
before you set the image to make sure that the tableView is initialized?