SITPOICategory

Objective-C

@interface SITPOICategory : SITResource

Swift

class SITPOICategory : SITResource

It represents the types of POI

Properties

  • Name in multiple languages

    Declaration

    Objective-C

    @property (nonatomic, strong) SITMultilanguageString *_Nonnull name;

    Swift

    var name: SITMultilanguageString { get set }
  • Complementary text identifier of a category

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull code;

    Swift

    var code: String { get set }
  • Relative URL where the icon of the category for the normal state can be retrieved

    Declaration

    Objective-C

    @property (nonatomic, strong) SITURL *_Nonnull iconURL;

    Swift

    var iconURL: SITURL { get set }
  • Relative URL where the icon of the category for the selected state can be retrieved

    Declaration

    Objective-C

    @property (nonatomic, strong) SITURL *_Nonnull selectedIconURL;

    Swift

    var selectedIconURL: SITURL { get set }
  • Determines the visibility of a category (YES means available to all users, NO means available to a particular user).

    Declaration

    Objective-C

    @property (nonatomic) BOOL isPublic;

    Swift

    var isPublic: Bool { get set }

Deprecated

  • Deprecated

    Use -valueForLocale method of the name property instead.

    Name of the category in English

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull nameEn;

    Swift

    var nameEn: String { get set }
  • Deprecated

    Use -valueForLocale method of the name property instead.

    Name of the category in Spanish

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull nameEs;

    Swift

    var nameEs: String { get set }