ID3FrameRecordingDayMonth

public class ID3FrameRecordingDayMonth : ID3Frame, CustomDebugStringConvertible

A class used to represent an ID3 recording day month frame to be used in the ID3 tag. Valid only for ID3 tag version 2.3 and 2.2.

  • day

    Recording day of the song.

    Declaration

    Swift

    public let day: Int?
  • Recording month of the song.

    Declaration

    Swift

    public let month: Int?
  • ID3FrameRecordingDayMonth description, useful for debug.

    Declaration

    Swift

    public var debugDescription: String { get }
  • Init an ID3 recording day month frame.

    Declaration

    Swift

    public init(day: Int?, month: Int?)

    Parameters

    day

    a day as int.

    month

    a month as int.