I'm using Xcode Swift 3.0, I have 5 view controllers, each controller have several textField. Once the information finish filled, press nextButton to next view controller. For example, finish fill in all textField in view controller 1, click nextButton and I will segue it to view controller 2, and so on.....
I want to get view controller 1,2,3,4 entered textField information only from view controller 5.
How am I gonna to do that without using Segue to pass data from vc1 to vc2, and from vc2 to vc3 and so on?
Please advice.