A beautiful DateTimePicker.
- Xcode 6 or higher
- iOS 7.0 or higher
- ARC
All you need to do is drop HCDDateTimePicker
files into your project, and add #include HCDDateTimePicker.h
to the top of classes that will use it.
Change to the directory of your Xcode project:
$ cd /path/to/YourProject
$ touch Podfile
$ edit Podfile
Edit your project's Podfile
and add the following:
pod 'HcdDateTimePicker'
Install into your Xcode project:
pod setup
pod install
HcdDateTimePickerView *dateTimePickerView = [[HcdDateTimePickerView alloc] initWithDatePickerMode:DatePickerDateMode defaultDateTime:[[NSDate alloc]initWithTimeIntervalSinceNow:0]];
dateTimePickerView.clickedOkBtn = ^(NSString * datetimeStr){
NSLog(@"%@", datetimeStr);
};
[self.view addSubview:dateTimePickerView];
[dateTimePickerView showHcdDateTimePicker];
- DatePickerDateMode
- DatePickerTimeMode
- DatePickerDateTimeMode
- DatePickerYearMonthMode
- DatePickerMonthDayMode
- DatePickerHourMinuteMode
- DatePickerDateHourMinuteMode
If you find some bugs or you have some suggest, please contact me or post me an issue.Thank you!
- Email: chedahuang@icloud.com