0 votes
in Swift by
How to pass the data between view controllers?

1 Answer

0 votes
by

There are three ways to pass the data between view controllers as shown below.

  • Using Segue, in prepareForSegue method (Forward).
  • Setting the variable directly (Backword).
  • Using Delegate (Backword).
...