我的故事板视图中有一个UIDatePicker连接到头文件中的IBOutlet.
在实现文件中,我将一些属性设置为选择器,然后将其分配给我的textFields:
[self.txtEndDate setInputView:self.picker];
这在iOS 7中运行良好,但是对于iOS 8,它给出了以下错误:
Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency',reason: 'child view controller:<UICompatibilityInputViewController: 0x7c2d8800> should have parent view controller:<InserimentoDurata: 0x7aec2b10> but requested parent is:<UIInputWindowController: 0x7b92b400>'
有关如何解决此问题的任何想法?