Notification

struct Notification : ReferenceConvertible, Equatable, Hashable
  • Posted immediately after the selected overlay view was changed. The notification object is the view that was selected. The userInfo dictionary is nil.

    Declaration

    Swift

    public static var PESDKSelectedSpriteDidChange = Notification.Name.init(rawValue: "PESDKSelectedSpriteDidChangeNotification")
  • Posted just before an UndoController object performs an undo operation.

    Declaration

    Swift

    static let UndoControllerWillUndoChange = Notification.Name("ly.img.undo-controller-will-undo-change")
  • Posted just after an UndoController object performs an undo operation.

    Declaration

    Swift

    static let UndoControllerDidUndoChange = Notification.Name("ly.img.undo-controller-did-undo-change")
  • Posted just before an UndoController object performs a redo operation.

    Declaration

    Swift

    static let UndoControllerWillRedoChange = Notification.Name("ly.img.undo-controller-will-redo-change")
  • Posted just after an UndoController object performs a redo operation.

    Declaration

    Swift

    static let UndoControllerDidRedoChange = Notification.Name("ly.img.undo-controller-did-redo-change")
  • Posted after an undo operation has been registered with the UndoController

    Declaration

    Swift

    static let UndoControllerDidRegisterUndoOperation = Notification.Name("ly.img.undo-controller-did-register-undo-operation")