SITPOIBase
Objective-C
@interface SITPOIBase : NSObject
Swift
class SITPOIBase : NSObject
Base interface for SITPOI
-
Name
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nonnull name;
Swift
var name: String { get set }
-
Additional information about the POI in an HTML format
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nonnull info;
Swift
var info: String { get set }
-
Relationship to a SITPOICategory object
Declaration
Objective-C
@property (nonatomic, strong) SITPOICategory *_Nonnull category;
Swift
var category: SITPOICategory { get set }
-
Key-value property with addicional information. NOTE: You can use this property to associate any arbitrary info with this POI. Situm SDK for iOS does not make operations with this field.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary *_Nonnull customFields;
Swift
var customFields: [AnyHashable : Any] { get set }