Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

alikaragoz/AIDatePickerController

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AIDatePickerController

Installation

Manually

  1. Download and drop /AIDatePickerControllerfolder in your project.
  2. 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.

About

📅 UIDatePicker modally presented with iOS 7 custom transitions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published