4
despedirModalViewController Y devolver datos
Tengo dos controladores de vista, firstViewController y secondViewController . Estoy usando este código para cambiar a mi secondViewController (también le estoy pasando una cadena): secondViewController *second = [[secondViewController alloc] initWithNibName:nil bundle:nil]; second.myString = @"This text is passed from firstViewController!"; second.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; [self presentModalViewController:second animated:YES]; [second release]; Luego uso este …