I am hiding the UITabBar controller using the code below.
self.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:details animated:YES];
This is working fine.But when I return back how can I show the bar which is already hidden?
Thanks
Instead of the code I provided above I used this
ie replaced self with details.
THanks all.