I have a custom table view cell, which consists of four labels and an image view. I have another UIViewController which consists of two text fields and one text view.
When the values are entered in the text fields and text view of this controller, and the save button is pressed, the values must be saved on to my custom table view cells’ text labels. How is this possible?
Capture the Values entered in the Text Inputs and save them in different NSString variables. Set those values for the Next ViewControllers Input.
For example, declare a NSString in second View Controller Interface and @synthesize that. Before moving from first controller to second controller, set the value for that respective variable.