DLCategory

public class DLCategory : NSObject

DLCategoryは、運転免許証仕様の「免許の年月日」に対応するクラスです。

  • インスタンスの説明を返します

    Declaration

    Swift

    override public var description: String { get }
  • 免許の年月日を返します

    Declaration

    Swift

    @objc
    public var date: DLDate { get }
  • tag

    タグを返します

    Declaration

    Swift

    @objc
    public var tag: Int { get }
  • 免許の種別名を返します

    Declaration

    Swift

    @objc
    public var name: String { get }
  • 保有している免許種別かどうかをチェックします

    Note

    保有していればtrue、していなければfalseを返します

    Declaration

    Swift

    @objc
    public var isLicensed: Bool { get }