This control is based on the datepicker-ios control combined with the KNSemiModalViewController.
The original controller was not aware of orientation changes and was missing some customization features that I needed for my project, so I decided to rewrite part of the controller to fit to my needs
Install with CocoaPods by adding the following to your Podfile:
####Objective-C
platform :ios, '6.1'
pod 'THCalendarDatePicker', '~> 1.2.0'
####Swift
platform :ios, '8.0'
use_frameworks!
pod 'THCalendarDatePicker', '~> 1.2.0'
Note: We follow http://semver.org for versioning the public API.
Or copy the THCalendarDatePicker/
directory from this repo into your project. As it is using the KNSemiModalViewController internally as dependency you'll need to add and wire those files as well.
This is a sample initialization taken from the ExampleProject.
- (IBAction)touchedButton:(id)sender {
if(!self.datePicker)
self.datePicker = [THDatePickerViewController datePicker];
self.datePicker.date = self.curDate;
self.datePicker.delegate = self;
[self.datePicker setAllowClearDate:NO];
[self.datePicker setClearAsToday:YES];
[self.datePicker setAutoCloseOnSelectDate:YES];
[self.datePicker setAllowSelectionOfSelectedDate:YES];
[self.datePicker setDisableHistorySelection:YES];
[self.datePicker setDisableFutureSelection:NO];
[self.datePicker setSelectedBackgroundColor:[UIColor colorWithRed:125/255.0 green:208/255.0 blue:0/255.0 alpha:1.0]];
[self.datePicker setCurrentDateColor:[UIColor colorWithRed:242/255.0 green:121/255.0 blue:53/255.0 alpha:1.0]];
[self.datePicker setDateHasItemsCallback:^BOOL(NSDate *date) {
int tmp = (arc4random() % 30)+1;
if(tmp % 5 == 0)
return YES;
return NO;
}];
//[self.datePicker slideUpInView:self.view withModalColor:[UIColor lightGrayColor]];
[self presentSemiViewController:self.datePicker withOptions:@{
KNSemiModalOptionKeys.pushParentBack : @(NO),
KNSemiModalOptionKeys.animationDuration : @(1.0),
KNSemiModalOptionKeys.shadowOpacity : @(0.3),
}];
}
or how you could do it in Swift
lazy var datePicker:THDatePickerViewController = {
var dp = THDatePickerViewController.datePicker()
dp.delegate = self
dp.setAllowClearDate(false)
dp.setClearAsToday(true)
dp.setAutoCloseOnSelectDate(false)
dp.setAllowSelectionOfSelectedDate(true)
dp.setDisableHistorySelection(true)
dp.setDisableFutureSelection(false)
//dp.autoCloseCancelDelay = 5.0
dp.selectedBackgroundColor = UIColor(red: 125/255.0, green: 208/255.0, blue: 0/255.0, alpha: 1.0)
dp.currentDateColor = UIColor(red: 242/255.0, green: 121/255.0, blue: 53/255.0, alpha: 1.0)
dp.currentDateColorSelected = UIColor.yellowColor()
return dp
}()
@IBAction func dateButtonTouched(sender: AnyObject) {
datePicker.date = curDate
datePicker.setDateHasItemsCallback({(date:NSDate!) -> Bool in
let tmp = (arc4random() % 30) + 1
return tmp % 5 == 0
})
presentSemiViewController(datePicker, withOptions: [
KNSemiModalOptionKeys.pushParentBack : NSNumber(bool: false),
KNSemiModalOptionKeys.animationDuration : NSNumber(float: 1.0),
KNSemiModalOptionKeys.shadowOpacity : NSNumber(float: 0.3)
])
}
- Fixed issue #23
- Fixed issue #22
- Pull request #21, #20
- Fixed issues #18, #17, #16, #15
- Pull request #13
- iOS8 deprecation warnings removed
- Fixed issues #12, #11, #7, #5
- Bugfix (Now it's taking the default starting day for the locale; but not the custom setting "Week starts on")
- Configurable if it should show future entries
- Select a Date from Calendar
- Awareness of the setting 4 the first weekday
- Configurable Colors
- Configurable if it should be allowed to clear the selection
- Configurable if it should close on selection or not
- reduce size of control if "hasItemCallback" is not used/disabled
#Contributions
...are really welcome. If you have an idea just fork the library change it and if its useful for others and not affecting the functionality of the library for other users I'll insert it
###Contributors
Source code of this project is available under the standard MIT license. Please see the license file.