Methods

Objective-C

NS_ENUM(int, Methods) {
    BATCH = 0,
    MINI_BATCH = 1
}

Swift

enum Methods : Int32
  • Declaration

    Objective-C

    BATCH = 0

    Swift

    case BATCH = 0
  • Declaration

    Objective-C

    MINI_BATCH = 1

    Swift

    case MINI_BATCH = 1