EDIT: Watch a video about my problem here: https://www.dropbox.com/sh/lzgs9mahx5mea13/AADLYfLQix7MDleDN1ER81qVa?dl=0
I had a real-time app in the app store that works fine on iOS 9.
However, on iOS 10 (tested on the iPhone 6s device with the latest beta version), when a cell on the main viewing controller is selected and the detailed view is โpressedโ, the title of the navigation bar and buttons of the navigation bar disappear.
Only the back button is displayed.
Even if I go back to the wizard by clicking the back button or bouncing back, they wonโt go back. After you cast it back, even the names of the "wizard" and the panel buttons disappeared. I do not know how to fix this problem, since there are no errors.
In my code, I do not hide the navigation bar anywhere and do nothing with the navigation controller.
Screenshots from the view hierarchy: 
Notice how the title and my right buttons on the panel are located behind several other views. the back button is at the very beginning. This shows that the buttons and the title are not hidden, they are covered by three additional views: UIVisualEffectView, _UIVisualEffectBackdropView and _UIVIsualEffectFilterView
Also in the video you will notice that if I get back, cancel the swipe, the panel buttons will return. But the name does not have.


After returning to the master, note that the material of the main navigation barrier is superimposed by two other types of private class: 
I program programmatically: Corresponding code:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [self.tableView deselectRowAtIndexPath:indexPath animated:YES]; PlaylistDetailViewController *pdvc = (PlaylistDetailViewController*)[self.storyboard instantiateViewControllerWithIdentifier:@"PlaylistDetailViewController"]; pdvc.indexPath=indexPath; [self.navigationController pushViewController:pdvc animated:YES]; }