i use below cod to passing Data Back from second view controller to first view controller but it's not work, what is wrong?
- (IBAction)donePressed:(id)sender {
NSManagedObject *selectedGroup=[_group objectAtIndex:[[self.tableView indexPathForSelectedRow] row]];
ContactEditVC *firstViewController = [[ContactEditVC alloc] initWithNibName:@"ContactEditVC" bundle:nil];
firstViewController .data=[NSString stringWithFormat:@"%@",[selectedGroup valueForKey:@"gName"]];
firstViewController ._group=selectedGroup;
[firstViewController .mybutton setTitle:@"success" forState:UIControlStateNormal];
[self.navigationController popViewControllerAnimated:YES];
}