I want to pass data from childVC to parentVC when popping view controller.
ChildViewController { /processing data/ //get data value
value = 123 self.navigationController?.popViewController(animated: true) }ParentViewController { //use the value from child vc(value 123) }
How can i pass the data back to use it in ParentViewController?