ID3FrameWithStringContent

public class ID3FrameWithStringContent : ID3Frame

A class used to represent an ID3 frame with generic string data in the ID3 tag. This class is used to represent all the ID3 frames that contains plain string as data (e.g. Artist, Album, Title).

  • The content as string.

    Declaration

    Swift

    public let content: String
  • Init an ID3 frame with string content.

    Declaration

    Swift

    public init(content: String)

    Parameters

    content

    the content of the ID3 frame.