IndicatorType
public enum IndicatorType
Represents the activity indicator type which should be added to an image view when an image is being downloaded.
- none: No indicator.
- activity: Uses the system activity indicator.
- image: Uses an image as indicator. GIF is supported.
- custom: Uses a custom indicator. The type of associated value should conform to the
Indicator
protocol.
-
No indicator.
Declaration
Swift
case none
-
Uses the system activity indicator.
Declaration
Swift
case activity
-
Uses an image as indicator. GIF is supported.
Declaration
Swift
case image(imageData: Data)