RecordingTime

public struct RecordingTime : CustomDebugStringConvertible

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

  • Recording hour of the song.

    Declaration

    Swift

    public var hour: Int?
  • Recording seconds of the song.

    Declaration

    Swift

    public var minute: Int?
  • RecordingTime description, useful for debug.

    Declaration

    Swift

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

    Declaration

    Swift

    public init(hour: Int?, minute: Int?)

    Parameters

    hour

    the recording hour of the song.

    minute

    the recording minute of the song.