Skip to content

bhirt-bpl/CalendarIOS7

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Calendar iOS

Twitter License MIT CocoaPods

Calendar iOS is a very simple calendar/date picker component for your iOS apps based on UICollectionView and 2 layouts.

Day cells styles

Image

Changes


v 0.0.3 fix section number (number of months between two dates) update app localization v 0.0.2 Implementation of horizontal scrollDirection

v 0.0.1 Draft version

Supported iOS & SDK Versions

  • Earliest supported deployment target - iOS 6.0

Installation

pod 'CalendarIOS7'

Creating a CalendarViewController

    CALAgendaViewController *agendaVc = [CALAgendaViewController new];
    agendaVc.calendarScrollDirection = UICollectionViewScrollDirectionHorizontal;
    agendaVc.agendaDelegate = self;
    [agendaVc setFromDate:fromDate];
    [agendaVc setToDate:toDate];
    #Select cell style
	agendaVc.dayStyle = CALDayCollectionViewCellDayUIStyleIOS7;

Delegation : CALAgendaCollectionViewDelegate

- (void)agendaCollectionView:(CALAgendaCollectionView *)agendaCollectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath selectedDate:(NSDate *)selectedDate;
- (BOOL)agendaCollectionView:(CALAgendaCollectionView *)agendaCollectionView canSelectDate:(NSDate *)selectedDate;
- (void)agendaCollectionView:(CALAgendaCollectionView *)agendaCollectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath startDate:(NSDate *)startDate endDate:(NSDate*)endDate;

Other protocols : CALgendaEvent

If events are availble, cell can be customize to present this state. The calendar view controller can get a array of events. Events have just to implement this protocol.

@protocol CALgendaEvent <NSObject>

- (NSDate *)eventStartDate;
- (NSDate *)eventEndDate;
- (NSString *)eventName;

@end

TODOS

  • Improve genericity and customization of cells,
  • Hours selection is a draft version .. so i'have to finish it :)

About

Calendar component for iOS apps

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Objective-C 98.6%
  • Other 1.4%