Enumerations

The following enumerations are available globally.

  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, MMMHorizontalPickerStyle) {
    
    	/** In this mode all item views define their preferred width via Auto Layout. */
    	MMMHorizontalPickerStyleDefault,
    
    	/** In this mode the width of every item will be constrainted to the width of the picker adjusted to `contentInsets`. */
    	MMMHorizontalPickerStylePaged,
    
    	/** In this mode the width of every item will be constrainted to the width of the widest item adjusted to `contentInsets`. */
    	MMMHorizontalPickerStyleUniform
    }

    Swift

    enum MMMHorizontalPickerStyle : Int