ID3Version

public enum ID3Version : UInt8, Comparable, Equatable, Hashable, CaseIterable

Enum that contains the version supported by ID3TagEditor.

  • ID3 2.2 version.

    Declaration

    Swift

    case version2 = 2
  • ID3 2.3 version.

    Declaration

    Swift

    case version3 = 3
  • ID3 2.4 version.

    Declaration

    Swift

    case version4 = 4
  • Compare two version values.

    Declaration

    Swift

    public static func < (lhs: ID3Version, rhs: ID3Version) -> Bool

    Parameters

    lhs

    left side of compare operation.

    rhs

    right side of compare operation.

    Return Value

    true if the version value are the same, else false.