CPCMonthViewSelectionDelegate
public protocol CPCMonthViewSelectionDelegate : AnyObject
Use a selection delegate (a custom object that implements this protocol) to modify behavior of a view when user interacts with it.
-
Selected days associated with this view.
Declaration
Swift
var selection: CPCViewSelection { get set }
-
This method is called after view selection is being reset programmatically (e. g. by changing represented month).
Declaration
Swift
func monthViewDidClearSelection(_ monthView: CPCMonthView)
Parameters
monthView
View for which selection was reset.
-
Tells the delegate that a specific cell is about to be selected by user.
The delegate must updated stored
selection
value according to the desired selection scheme and return whether the resulting selection was somehow changed.Declaration
Swift
func monthView(_ monthView: CPCMonthView, shouldSelect day: CPCDay) -> Bool
Parameters
monthView
View to handle user interaction for.
day
Day value rendered by the interacted cell.
Return Value
true
if user actions have lead to an updated selection value; otherwise,false
. -
Tells the delegate that a specific cell is about to be deselected by user.
The delegate must updated stored
selection
value according to the desired selection scheme and return whether the resulting selection was somehow changed.Declaration
Swift
func monthView(_ monthView: CPCMonthView, shouldDeselect day: CPCDay) -> Bool
Parameters
monthView
View to handle user interaction for.
day
Day value rendered by the interacted cell.
Return Value
true
if user actions have lead to an updated selection value; otherwise,false
.