RecordingDateTime
public struct RecordingDateTime
A struct used to represent the recording date and time for the ID3 tag.
-
Recording date of the song.
Declaration
Swift
public var date: RecordingDate?
-
Recording time of the song.
Declaration
Swift
public var time: RecordingTime?
-
Init a recording date time.
Declaration
Swift
public init(date: RecordingDate?, time: RecordingTime?)
Parameters
date
the recording date of the song.
time
the recording time of the song.