What I want to do:
I have two ViewControllers, both contain tableViews.
In the first ViewController the users chooses a Name from the tableViewCell and that should get stored int the tableView in the second ViewController.
Right now I do this by appending the tableViewCell content to an array in the second ViewController.
My problem:
By that method I can only get 1 tableViewCell to the array in the second ViewController, since it doesnt save the previous added Cells.
My idea:
I think some kind of local database could solve my issue, but I have absolutely no clue where to start or what to look for.
Can you help me?