我对 iOS 编程/Objective C 非常陌生。
我想要发生的事件流是:用户从标签栏视图控制器中选择标签。加载 VIEW A 后,它将打开一个模式窗口以获取一些信息
视图 A - (void)viewDidLoad
ModalYearPickerViewController *modalYearPickerViewController= [[ModalYearPickerViewController alloc] init];
[self presentViewController:modalYearPickerViewController animated:NO completion:nil];
我正在尝试立即加载我的年份选择器视图,以便用户可以从我的选择器中选择一年(在视图 B 中),然后在将值传递回视图 A 后关闭模式窗口。
现在,第一个视图加载,然后自动进入黑屏。我不确定为什么我的 modalYearPickerViewController 视图控制器上有一个选择器等。
任何以编程方式加载模态视图控制器的提示或帮助将不胜感激!
谢谢!