dismissModalViewController 및 데이터 다시 전달
두 개의 뷰 컨트롤러, firstViewController 및 secondViewController가 있습니다. 이 코드를 사용하여 secondViewController로 전환합니다 (문자열도 전달하고 있습니다). 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]; 그런 다음 secondViewController에서이 코드를 사용하여 firstViewController로 다시 전환합니다. [self dismissModalViewControllerAnimated:YES]; 이 …