TagEditor

@objc(UATagEditor)
public class TagEditor : NSObject

Tag editor.

  • Adds tags.

    Declaration

    Swift

    @objc(addTags:)
    public func add(_ tags: [String])

    Parameters

    tags

    The tags.

  • Adds a single tag.

    Declaration

    Swift

    @objc(addTag:)
    public func add(_ tag: String)

    Parameters

    tag

    The tag.

  • Removes tags from the given group.

    Declaration

    Swift

    @objc(removeTags:)
    public func remove(_ tags: [String])

    Parameters

    tags

    The tags.

  • Removes a single tag.

    Declaration

    Swift

    @objc(removeTag:)
    public func remove(_ tag: String)

    Parameters

    tag

    The tag.

  • Sets tags on the given group.

    Declaration

    Swift

    @objc(setTags:)
    public func set(_ tags: [String])

    Parameters

    tags

    The tags.

  • Clears tags.

    Declaration

    Swift

    @objc(clearTags)
    public func clear()
  • Applies tag changes.

    Declaration

    Swift

    @objc
    public func apply()