IBOutlet UILabel *display;
IBOutlet UITextField *textfield;
and, I have this button to update the text from textfield to label
-(IBAction)updateLabel:(id)sender
{
display.text=textfield.text;
}
How to also transfer such string to model ( say string "hello world" to Save.h) for further use? for example, I may want to save those strings in a file.