Prior to iOS 9, I developed an application focused on iOS 8.4. I used several UITableView linked to each other via segue of kind "Show (like Push)". It worked perfectly with the correct behavior: every time I switched from a UITableView to another, the "Back" button appeared, so the user can return to the previous scene; the back button also appeared from UITableView to UIViewController using the same session.
Now I updated to the latest version of Xcode and targeted the application on iOS 9.0, I had this problem: now, if I switch from UITableView to another UITableView , the back button does not do more, but if I switch from UITableView to UIViewController , the opposite will appear button. I saw that other developers had a similar problem (as you see here, here and here ), but I donβt understand how they decided (except for the third link, but this is not my case). Does anyone know how I can get back to work? thanks in advance

source share