Skip to content

StephenZhuang/SZCalendarPicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d1c3629 · Jul 7, 2017

History

12 Commits
Jul 6, 2017
Nov 30, 2014
Nov 30, 2014
Dec 1, 2014

Repository files navigation

SZCalendarPicker

a datepicker with calendar style

SZCalendarPicker.gif

usage


  • add class floder to your project
  • #import "SZCalendarPicker.h"
- (IBAction)showAction:(id)sender
{
    SZCalendarPicker *calendarPicker = [SZCalendarPicker showOnView:self.view];
    calendarPicker.today = [NSDate date];
    calendarPicker.date = calendarPicker.today;
    calendarPicker.frame = CGRectMake(0, 100, self.view.frame.size.width, 352);
    calendarPicker.calendarBlock = ^(NSInteger day, NSInteger month, NSInteger year){
        
        NSLog(@"%i-%i-%i", year,month,day);
    };
}

THX


@nathanwhy and his demo HYCalendar

About

a datepicker with calendar style

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published