I have a storyboard using tabbarcontroller. There is a tabular view on one of the tab panels, and I want the user to open a detailed view by clicking on a row from the table. The problem is when I open the tab bar with the detailed view and the skins of the navigation bar ... In the storyboard, I create the detailed view as a new view controller, then create a new file and pass it to the detailed view class.
Code in didselectrowatindexpath:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { detalleYouTube *dvController = [[detalleYouTube alloc] init]; [self.navigationController pushViewController:dvController animated:YES]; }
Thank you in advance!
source share