ImagePluginImpl

open class ImagePluginImpl : NSObject, ImagePlugin

默认图片插件

Accessor

  • 单例模式

    Declaration

    Swift

    @objc(sharedInstance)
    public static let shared: ImagePluginImpl
  • 图片加载完成是否显示渐变动画,默认false

    Declaration

    Swift

    open var fadeAnimated: Bool
  • 图片加载时是否显示动画指示器,默认false

    Declaration

    Swift

    open var showsIndicator: Bool
  • 图片占位图存在时是否隐藏动画指示器,默认false

    Declaration

    Swift

    open var hidesPlaceholderIndicator: Bool
  • 自定义动画指示器句柄,参数为是否有placeholder,默认nil

    Declaration

    Swift

    open var customIndicatorBlock: ((UIView, Bool) -> (UIView & IndicatorViewPlugin)?)?
  • 自定义图片处理句柄,setImageURL开始时调用

    Declaration

    Swift

    open var customBlock: ((UIView) -> Void)?
  • 自定义图片进度句柄,setImageURL下载时调用

    Declaration

    Swift

    open var customProgressBlock: ((UIView, CGFloat) -> Void)?
  • 自定义图片完成句柄,setImageURL完成时调用

    Declaration

    Swift

    open var customCompletionBlock: ((UIView, UIImage?, Error?) -> Void)?
  • 自定义图片取消句柄,cancelImageRequest时调用

    Declaration

    Swift

    open var customCancelBlock: ((UIView) -> Void)?

ImagePlugin