ObserverPriority

public class ObserverPriority

This class provides standardized observer priority.

It is easy to extended this class to add your own priorities

Example Usage

extension ObserverPriority {
    public static let myPriority: UInt8 = 42
}

Note

ObserverPriority must be of type UInt8
  • Undocumented

    Declaration

    Swift

    public static let lowest: UInt8
  • low

    Undocumented

    Declaration

    Swift

    public static let low: UInt8
  • Undocumented

    Declaration

    Swift

    public static let normal: UInt8
  • Undocumented

    Declaration

    Swift

    public static let high: UInt8
  • Undocumented

    Declaration

    Swift

    public static let highest: UInt8