This is my structure of my project:
I want A4 to behave like there were no Nav Controller in this project. There should not be a back Button or TabBar.
Like the Project were structured like this:
>TabBarController->NavController->A1->A2->A3->A4
I want A4 to behave like there were no Nav Controller in this project. There should not be a back Button or TabBar.
Like the Project were structured like this:
>B1->B2
How will you get out of A4 ?
You can remove the segue that connects to A4.
Then in the button in A3 that previously led to A4, you should instantiate A4.
let newController = storyboard?.instantiateViewController(withIdentifier: "A4") as ? ClassForA4
Do you just want to hide the back button ?
You can remove the segue that connects to A4.
Then in the button in A3 that previously led to A4, you should instantiate A4.
let newController = storyboard?.instantiateViewController(withIdentifier: "A4") as ? ClassForA4
Do you just want to hide the back button ?