UIDatePicker is not visible in iOS 8
ios8
Solution
This turned out to be a Simulator issue for me in Xcode 6.0.1. This worked on device (iPhone 4S with iOS 8 release version). As described by the previous user, the steps below made the date picker visible on an iOS 8 simulator for me.
Launch the simulator and the app and click on the field that has the date picker as the input view.
Now press CMD+K (Hardware->Keyboard->Toggle Software Keyboard) and the date picker became visible.
Again this was a simulator only issue and the issue did not occur on device.
Problem
I have an issue with date picker, i.e. `UIDatePicker` is working fine in all version except iOS 8. Code: ``` UIDatePicker *datePicker = [[UIDatePicker alloc]init]; [datePicker setDate:[NSDate date]]; [datePicker setDatePickerMode:UIDatePickerModeDate]; datePicker.maximumDate=[NSDate date]; [datePicker addTarget:self action:@selector(updateBirthdateField:) forControlEvents:UIControlEventValueChanged]; [birthdatField setInputView:datePicker]; ```