ID3FrameWithLocalizedContent

public class ID3FrameWithLocalizedContent : ID3FrameWithStringContent, CustomDebugStringConvertible

A class used to represent an ID3 frame that contains localized content to be used in the ID3 tag. Only a subset of the ID3 frames support localized content. See the various ID3 tag builders to understand which frames admit a locallized content. See the official id3 documentation for a full list of frame with localized content.

  • The language of the lyrics contained in the frame

    Declaration

    Swift

    public let language: ID3FrameContentLanguage
  • A short description of the lyrics contained in the frame

    Declaration

    Swift

    public let contentDescription: String
  • ID3FrameAttachedPicture debug description.

    Declaration

    Swift

    public var debugDescription: String { get }
  • Init an ID3 localized string content frame.

    Declaration

    Swift

    public init(language: ID3FrameContentLanguage, contentDescription: String, content: String)

    Parameters

    language

    the language of the content. See ID3PictureType for a complete list of the available languages.

    contentDescription

    a description of the content of the frame as string.

    content

    the content.of the frame (see ID3FrameContentLanguage). types.