FUITag

public class FUITag : FUITagText

FUITag displayed as a tag within FUIObjectHeaderView, FUIMapDetailTagObjectTableViewCell and FUITagView.

Usage

  • Initializing programmatically:

let tag = FUITag(title: "Tag1")

  • Tag’s color scheme

    Declaration

    Swift

    open var colorScheme: FUIBackgroundColorScheme { get set }
  • Initialize an FUITag object that allows to set label text with an optional FUITagColorScheme applied

    Declaration

    Swift

    public init(title: String, colorScheme: FUIBackgroundColorScheme = .device)

    Parameters

    title

    label text

    colorScheme

    FUITagColorScheme applied to the label. Default to FUIBackgroundColorScheme.lightConstant

  • ExpressibleByStringLiteral initializer

    Remark

    Typically only used to initialize from string literal. Use init(title:) to initialize from String.

    Declaration

    Swift

    required public init(stringLiteral value: String)

    Parameters

    value

    string value

  • Fill color of the tag

    Declaration

    Swift

    @available(*, deprecated, message: "This property is deprecated. Please use 'fillColor' property.")
    public var backgroundColor: UIColor? { get }