RecordingTime
public struct RecordingTime
A struct used to represent the recording time for the ID3 tag.
-
Recording hour of the song.
Declaration
Swift
public var hour: Int?
-
Recording seconds of the song.
Declaration
Swift
public var minute: Int?
-
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.