Ý tưởng của mình thì mình cho cái tableView này load theo từng mục.
Nếu thanh bar bên dưới mình chọn tag Ẩm thực thì sẽ load tableView theo data của ẩm thực. Các cái còn lại cũng tương tự.
Bạn có thể dùng UserDefault hoặc là dùng UIStoryboardSegue - destination
override func prepare(for segue: UIStoryboardSegue, sender: Any?){
(segue.destination as! ViewController).timeRun_Label.text = timeLengtht_TextField.text!
(segue.destination as! ViewController).targetNum_Label.text = target_TextField.text
(segue.destination as! ViewController).numTarget = Int(target_TextField.text!)!
Các biến `timeRun_Label.text, timeRun_Label.text, numTarget` là các biến bên class ViewController.
Còn hàm `prepare` mình dùng ở một View_class khác.
Nó gọi sau mỗi lần mình close một đối tượng View lại.
}
Mình cũng không rõ có hiểu ý của bạn chưa nữa Nếu có sai ở đâu mong bạn thông cảm nhé!