GithubHelp home page GithubHelp logo

kb100824 / clweeklycalendarview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from clisuper/clweeklycalendarview

0.0 2.0 0.0 443 KB

Weekly calendar view for iphone, scrollable

License: MIT License

Objective-C 100.00%

clweeklycalendarview's Introduction

#CLWeeklyCalendarView

CLWeeklyCalendarView is a scrollable weekly calendarView for iPhone. It is easy to use and customised.

alt tag

Installation

  • Drag the CLWeeklyCalendarViewSource folder into your project.

Demo Usage

Please download all of the files in the repo and run it directly to have a look.

Initialize

Using CLWeeklyCalendarViewSource in your app will usually look as simple as this :

//Initialize
-(CLWeeklyCalendarView *)calendarView
{
    if(!_calendarView){
        _calendarView = [[CLWeeklyCalendarView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 100)];
        _calendarView.delegate = self;
    }
    return _calendarView;
}

//Add it into parentView
[self.view addSubview:self.calendarView];

Delegate

After the date in the calendar has been selected , following delegate function will be fired

//After getting data callback
-(void)dailyCalendarViewDidSelect:(NSDate *)date
{
    //You can do any logic after the view select the date
}

You can delegate to tell the calenderView scrollTo specified date by using following delegate function

- (void)redrawToDate: (NSDate *)dt;

Customisation

**Please be aware customisation delegate function is optional, if u do not apply it, it will just fire the default value.

Using CLWeeklyCalendarViewDelegate to customise the behaviour

Following customisation key is allowed

// Keys for customize the calendar behavior
extern NSString *const CLCalendarWeekStartDay;    //The Day of weekStart from 1 - 7 - Default: 1

extern NSString *const CLCalendarDayTitleTextColor; //Day Title text color,  Mon, Tue, etc label text color

extern NSString *const CLCalendarSelectedDatePrintFormat;   //Selected Date print format,  - Default: @"EEE, d MMM yyyy"

extern NSString *const CLCalendarSelectedDatePrintColor;    //Selected Date print text color -Default: [UIColor whiteColor]

extern NSString *const CLCalendarSelectedDatePrintFontSize; //Selected Date print font size - Default : 13.f

extern NSString *const CLCalendarBackgroundImageColor;      //BackgroundImage color - Default : see applyCustomDefaults.

You need to fire below delegate function to apply your customisation

#pragma mark - CLWeeklyCalendarViewDelegate
-(NSDictionary *)CLCalendarBehaviorAttributes
{
    return @{
             CLCalendarWeekStartDay : @2, 	//Start from Tuesday every week
             CLCalendarDayTitleTextColor : [UIColor yellowColor],
             CLCalendarSelectedDatePrintColor : [UIColor greenColor],
             };
}

Credits

CLFaceDetectionImagePicker is brought to you by [Caesar Li]

clweeklycalendarview's People

Contributors

caesarli avatar clisuper avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.