In Storyboard rootViewController is LoginViewController After Login I am going to UITabbarController. on Tab Bar Controller there is list. after click on cell I am going to another ViewController. this process work right but problem at back button At the end when I click on back button it directly navigate to Login View Cotroller instead of UITabbarController
here is Screen shot of storyboard

Login button Method
- (IBAction)SDBtnLogin:(id)sender
{
SDTabFavorites *sdTabFavViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"tabVC"];
[self.navigationController pushViewController:sdTabFavViewController animated:YES];
}
Did select method of SDTabFavorites ViewController
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SDDetailViewController *sdDetailViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"SDDetailViewController"];
[self.navigationController pushViewController:sdDetailViewController animated:YES];
}
After Navigate to SDDetailViewController and try try to back then directly goes to login view controller.
UINavigationController??SDDetailViewControlleris next view afterSDTabFavoritesright?