Was easier than anticipated. Below, attached to a button,
Code:
-(IBAction)printmyposter {
textViewToBeUpdated.text = view.OriginalTextView.text;
}
When the button is pressed the empty textView will update with the first textView. Dont forget to import the @class for the first view in the .m, and create an IBOutlet in the .h.
Code:
IBOutlet ThisView *textViewToBeUpdated;
Seems to be working. If I have missed something let me know.