I'm currently writing an iPhone app that needs to pass data from a text field on the Flipside view to the Main view when the user clicks the Done button. This is the last component of a project that I am working on.
I've tried including my MainViewController.h
file on my FlipsideViewController.m
file, and this doesn't work. I'm currently writing in the - (IBAction)done:(id)sender
portion, something like
MainController._aTextFieldOnTheMainView.text = _aTextFieldOnTheFlipsideView.text;
but I always get this error: Property '_aTextFieldOnTheMainView' not found on object of type 'MainViewController'
.
What am I doing wrong?