pub unsafe trait UICalendarSelectionMultiDateDelegate: NSObjectProtocol {
// Provided methods
unsafe fn multiDateSelection_didSelectDate(
&self,
selection: &UICalendarSelectionMultiDate,
date_components: &NSDateComponents
)
where Self: Sized + Message { ... }
unsafe fn multiDateSelection_didDeselectDate(
&self,
selection: &UICalendarSelectionMultiDate,
date_components: &NSDateComponents
)
where Self: Sized + Message { ... }
unsafe fn multiDateSelection_canSelectDate(
&self,
selection: &UICalendarSelectionMultiDate,
date_components: &NSDateComponents
) -> bool
where Self: Sized + Message { ... }
unsafe fn multiDateSelection_canDeselectDate(
&self,
selection: &UICalendarSelectionMultiDate,
date_components: &NSDateComponents
) -> bool
where Self: Sized + Message { ... }
}Available on crate feature
UICalendarSelectionMultiDate only.Provided Methods§
unsafe fn multiDateSelection_didSelectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents )
Available on crate feature
UICalendarSelection only.unsafe fn multiDateSelection_didDeselectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents )
Available on crate feature
UICalendarSelection only.unsafe fn multiDateSelection_canSelectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents ) -> bool
Available on crate feature
UICalendarSelection only.unsafe fn multiDateSelection_canDeselectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents ) -> bool
Available on crate feature
UICalendarSelection only.