for the past one year I have not built an iOS app because I have to concentrate in Android development. and there are a lot of changes in iOS 13 development
I have some VCs in navigation controller like this
when I use push segue from VC1 to VC2 and back to VC1, then it will make it like a cards like this. here is the code I use when the button in the first VC is clicked
@IBAction func createEventButtonDidPressed(_ sender: Any) {
// do some actions first and then
performSegue(withIdentifier: "chooseEventName", sender: nil)
}
I have tried to read this Presenting modal in iOS 13 fullscreen , so I make fullscreen modal segue like this
but it will make the navigation bar in VC2 (that blue vc) will not show.
I have tried to select to bar to be 'Translucent navigation bar'
but when I run the app, I can't get that navigation bar in second VC, the navigation bar doesn't show when using fullscreen modal segue
I really need the behaviour exactly the same before iOS 13. like using push segue and the navigation bar still on top without look like a cards
how to do that ?