So I am able to transfer the data from the first view to the second view like this:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"Check Mark Segue"])
{
NSLog(@"Transfering Data");
AutoRenewDrop *controller = segue.destinationViewController;
controller.transferData = self.renewDate.text;
}
}
However, I try to transfer a new value back to renewDate.text when the user hits done and the transferData is working correctly but the renewDate.text does not change. Here is the code that I am using to transfer the data back:
-(IBAction)done:(UIStoryboardSegue *)segue {
[self.navigationController popViewControllerAnimated:YES];
AddR *add = [[AddR alloc] init];
add.renewDate.text = transferData;
}
Can someone tell me how to fix this?

- [[SomeClass alloc] init]returns a new instance every time it's called, so this would set the property of another instance of the AddR class... You should distinguish between classes and objects. – H2CO3 Nov 3 '12 at 14:00self(which points to the 1st view) to set the text. – H2CO3 Nov 3 '12 at 14:05@property UIView *previousView;, then from the same class, write[self.previousView setText:blah];. Also don't forget to writesecondView.previousView = self;from the method of the class of the first view where you create the second view instance. – H2CO3 Nov 3 '12 at 14:11