From a UITableView I am pushing another view controller with another UITableView onto the stack using this code:
// allocate and create instance of categories view controller
TJKCategoriesViewController *categoriesViewController = [[TJKCategoriesViewController alloc] init];
// push it onto the top of the navigation controller's stack
[self.navigationController pushViewController:categoriesViewController animated:YES];
When I am in the viewDidLoad method for the TJKCategoriesViewContoller I am changing the title using this code:
self.title = @"Categories";
This works just fine. However the "Categories" title is coming out the color of black and I would like it to be a different color. I've tried things like tintColor, but self.title doesn't have this property.
Does anyone have any suggestions?
Thanks, Glenn