我在需要从情节提要 ID 实例化的视图上遇到问题。在 IOS 模拟器中,视图加载了所有内容,但完全没有响应。日期选择器不移动,按钮不接受任何交互。
我已经检查了 IB 中的“自定义类”匹配项和 Storyboard ID 匹配项。该代码正在 PickerViewController 中执行,因为 UIDatePicker 是在代码中创建的,并且是正确的并且存在于 IOS 模拟器中。只是没有任何东西接受任何交互。触摸时按钮甚至不会变蓝。
我在前一个视图控制器中创建了视图:
PickerViewController *addViewController = (PickerViewController *)[self.storyboard instantiateViewControllerWithIdentifier:@"view"];
[addViewController.view setUserInteractionEnabled:TRUE];//chucked this line in to see if it helped
[addViewController setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentViewController:addViewController animated:YES completion:NULL];
我不确定这是否是代码问题,或者我是否没有在 IB 中正确连接某些东西。有任何想法吗??!!