AIDatePickerController alternatives and similar libraries
Based on the "PickerView" category.
Alternatively, view AIDatePickerController alternatives based on common mentions on social networks and blogs.
-
SKCountryPicker
A simple, customizable Country picker for picking country or dialing code. ๐ฎ๐ณ ๐ฏ๐ต ๐ฐ๐ท ๐ฉ๐ช ๐จ๐ณ ๐บ๐ธ ๐ซ๐ท ๐ช๐ธ ๐ฎ๐น ๐ท๐บ ๐ฌ๐ง -
McPicker
McPicker is a customizable, closure driven UIPickerView drop-in solution with animations that is rotation ready.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of AIDatePickerController or a related project?
README
AIDatePickerController
Installation
Manually
- Download and drop
/AIDatePickerController
folder in your project. - Congratulations!
Usage
// Create a date
NSDateFormatter *dateFormatter=[[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSDate *date = [dateFormatter dateFromString:@"1955-02-24"];
// Create an instance of the picker
AIDatePickerController *datePickerViewController = [AIDatePickerController pickerWithDate:date selectedBlock:^(NSDate *selectedDate) {
// Do what you want with the picked date.
} cancelBlock:^{
// Do what you want when the user pressed the cancel button.
}];
// Present it
[self presentViewController:datePickerViewController animated:YES completion:nil];
Requirements
- iOS >= 7.0
- ARC
Credits
Inspired by Roland Moers's RMDateSelectionViewController.
Contact
Ali Karagoz
License
AIDatePickerController is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the AIDatePickerController README section above
are relevant to that project's source code only.