I've Tab bar application and i will load the other view controller by navigation controller when i come back the tab bar is hiding i searched and i used
for(UIView *view in self.window.subviews)
{
if([view isKindOfClass:[UITabBarItem class]])
{
if(view.hidden){
view.hidden = NO;
break;
}
view.hidden = YES;
}
}
but the problem remains same can any one know the solution? Thanks in advance