Inherits from UITableViewCell
Declared in TKCalendarInlineViewTableViewCell.h

Overview

A table view cell used to present events in TKCalendarMonthPresenter inline view.

Properties

style

Returns the cell style. Use the style property to customize the visual appearance of TKCalendarInlineViewTableViewCell.

@property (nonatomic, strong, readonly) TKCalendarInlineViewTableViewCellStyle *style

Declared In

TKCalendarInlineViewTableViewCell.h

Instance Methods

attachWithCell:eventIndex:

Attaches a day cell and event index.

- (void)attachWithCell:(TKCalendarDayCell *__nonnull)cell eventIndex:(NSInteger)index

Parameters

cell

The day cell to which the displayed event belongs.

index

The index of the evnet inside the day cell events list.

Declared In

TKCalendarInlineViewTableViewCell.h

updateTextForEvent:withCell:

Called when the event text should be updated.

- (void)updateTextForEvent:(id<TKCalendarEventProtocol> __nonnull)event withCell:(TKCalendarDayCell *__nonnull)cell

Parameters

event

The event associated with this cell.

cell

The cell whose events should be displayed.

Declared In

TKCalendarInlineViewTableViewCell.h