I am using the SCTableViewCellDelegate method:
- (void)detailViewWillAppearForCell:(SCTableViewCell *) cell withDetailTableViewModel:(SCTableViewModel *) detailTableViewModel
to customize my detail view for a SCSelectionCell. I have everything set up that I need, but I can't figure out how to change the style/color of the navigation bar. I tried using:
detailTableViewModel.viewController.navigationController.navigationBar.barStyle = UIBarStyleBlack;
and:
detailTableViewModel.viewController.navigationController.navigationBar.tintColor = [UIColor blackColor];
with no success. I believe this is because the UINavigationBar has already been created before this method is called. Am I missing something?
Thanks!