Enumeration
ScrollingMode
public enum ScrollingMode: Equatable
Configures the behavior of the scrolling mode of the calendar
Relationships
Conforms To
Equatable
Enumeration Cases
stopAtEachCalendarFrame
case stopAtEachCalendarFrame
stopAtEachCalendarFrame - non-continuous scrolling that will stop at each frame
stopAtEachSection
case stopAtEachSection
stopAtEachSection - non-continuous scrolling that will stop at each section
stopAtEach
case stopAtEach(customInterval: CGFloat)
stopAtEach - non-continuous scrolling that will stop at each custom interval
nonStopToSection
case nonStopToSection(withResistance: CGFloat)
nonStopToSection - continuous scrolling that will stop at a section
nonStopToCell
case nonStopToCell(withResistance: CGFloat)
nonStopToCell - continuous scrolling that will stop at a cell
nonStopTo
case nonStopTo(customInterval: CGFloat, withResistance: CGFloat)
nonStopTo - continuous scrolling that will stop at acustom interval, do not use 0 as custom interval
Operators
==
public static func ==(lhs: ScrollingMode, rhs: ScrollingMode) -> Bool