FlaneurFormImagePickerElementCollectionViewCellDelegate

public protocol FlaneurFormImagePickerElementCollectionViewCellDelegate: FlaneurImagePickerControllerDelegate

The delegate of a FlaneurFormImagePickerElementCollectionViewCell object must adopt the FlaneurFormImagePickerElementCollectionViewCellDelegate protocol.

  • The image to use on the button presenting the image picker.

    Declaration

    Swift

    func buttonImage() -> UIImage
  • numberOfImages() Default implementation

    The maximum number of images the user can pick.

    Default Implementation

    Declaration

    Swift

    func numberOfImages() -> Int
  • initialSelection() Default implementation

    The initial image selection.

    Default Implementation

    Declaration

    Swift

    func initialSelection() -> [FlaneurImageDescriptor]
  • sourceProviders() Default implementation

    The available image providers for the image picker.

    Default Implementation

    Declaration

    Swift

    func sourceProviders() -> [FlaneurImageProvider]
  • localizedAttributedStringForTitle() Default implementation

    The localized title of the picker view controller.

    Default Implementation

    Declaration

    Swift

    func localizedAttributedStringForTitle() -> NSAttributedString
  • localizedStringForCancelAction() Default implementation

    The localized string for the cancel action of the picker view controller.

    Default Implementation

    Declaration

    Swift

    func localizedStringForCancelAction() -> String
  • localizedStringForDoneAction() Default implementation

    The localized string for the done action of the picker view controller.

    Default Implementation

    Declaration

    Swift

    func localizedStringForDoneAction() -> String