BPKCalendarPriceLabelCellData

@interface BPKCalendarPriceLabelCellData : NSObject

BPKCalendarPriceLabelCellData contains the properties required to show a price label under a calendar cell.

  • Create an instance of BPKCalendarPriceLabelCellData.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPrice:(nonnull NSString *)price
                               labelStyle:
                                   (nonnull BPKCalendarPriceLabelStyle *)labelStyle;

    Swift

    init!(price: Any!, labelStyle: Any!)

    Parameters

    price

    the price to show at the bottom of the cell.

    labelStyle

    The style to be applied to the text at the bottom of the cell.

  • The price value to be shown below the cell.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull price;

    Swift

    var price: UnsafeMutablePointer<Int32>! { get }
  • The style to apply to the price label.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BPKCalendarPriceLabelStyle *_Nonnull labelStyle;

    Swift

    var labelStyle: BPKCalendarPriceLabelCellData! { get }