RecordingDate

public struct RecordingDate : CustomDebugStringConvertible

A struct used to represent the recording date for the ID3 recording date time frame.

  • day

    Recording day of the song.

    Declaration

    Swift

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

    Declaration

    Swift

    public var month: Int?
  • Recording year of the song.

    Declaration

    Swift

    public var year: Int?
  • RecordingDate description, useful for debug.

    Declaration

    Swift

    public var debugDescription: String { get }
  • Init a recording date.

    Declaration

    Swift

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

    Parameters

    day

    the recording day of the song.

    month

    the recording month of the song.

    year

    the recording year of the song.