I have Page1 as first element in the navigation controller and Page2 as the second. I want the back button in Page2 to be without text.
I first used the Page2_Appear event for removing Page1 title when showing page two, but it didn't work (I suppose because the back button had already been initialized), and then tried doing the same thing in Page1_Desappear, and it didn't work either.
I then changed approach and removed Page1 title immediately after the call for showing Page2, after saving the title to a variable so that, using the Page2_Disappear event, I can set it back (I needed to save it since it can change due to the context), and this worked.
I remove Page1 title immediately showing Page2 because I don't want to see the title desappear and then get to the next page. The little delay is anyway present, with this approach, when getting back to Pag1.