Inherits from UIViewController
Conforms to TKCalendarMonthViewDataSource
TKCalendarMonthViewDelegate
Declared in TKCalendarMonthViewController.h

Overview

The TKCalendarMonthViewController class creates a controller object that manages a calendar month grid.

Tasks

  • – init

    Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

  • – initWithSunday:

    Initializes a month view controller to manage a month grid.

  • – initWithSunday:timeZone:

    Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

  • – initWithTimeZone:

    Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

  •   monthView

    Returns the month view managed by the controller object.

    property

Properties

monthView

Returns the month view managed by the controller object.

@property (nonatomic, strong) TKCalendarMonthView *monthView

Discussion

Returns the month view managed by the controller object.

Declared In

TKCalendarMonthViewController.h

Instance Methods

init

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

- (id)init

Return Value

A newly create month view controller.

Discussion

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

Declared In

TKCalendarMonthViewController.h

initWithSunday:

Initializes a month view controller to manage a month grid.

- (id)initWithSunday:(BOOL)sundayFirst

Parameters

sundayFirst

If YES, Sunday will be the left most day in the month grid, otherwise Monday.

Return Value

A newly create month view controller.

Discussion

Initializes a month view controller to manage a month grid.

Declared In

TKCalendarMonthViewController.h

initWithSunday:timeZone:

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

- (id)initWithSunday:(BOOL)sundayFirst timeZone:(NSTimeZone *)timeZone

Parameters

sundayFirst

If YES, Sunday will be the left most day in the month grid, otherwise Monday.

timeZone

The time zone for the calendar grid.

Return Value

A newly create month view controller.

Discussion

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

Declared In

TKCalendarMonthViewController.h

initWithTimeZone:

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

- (id)initWithTimeZone:(NSTimeZone *)timeZone

Parameters

timeZone

The time zone for the calendar grid.

Return Value

A newly create month view controller.

Discussion

Initializes a month view controller to manage a month grid. Sunday will be the left-most day.

Declared In

TKCalendarMonthViewController.h