我正在制作模态视图。我想要做的是等到模态视图被解除。这是代码。
SelecYourCountryViewController *selecYourCountryViewController = [[SelecYourCountryViewController alloc] initWithNibName:@"SelecYourCountryViewController" bundle:nil];
selecYourCountryViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self.presentingViewController presentViewController:selecYourCountryViewController animated:YES completion:nil];
NSLog(@"select your contry");
在这段代码中,尽管 modalview(selecYourCountryViewController) 是活动的,但流程会进入下一步。简而言之,在 selectYourCountryViewController 工作时会显示 NSLog。请让我知道等待视图被关闭并获得返回值的方式。
(就像 VisualBasic 行为上的 Msgbox)
提前致谢。