MBMStyleObjectInfo
@interface MBMStyleObjectInfo : NSObject
The information about style object (source or layer).
-
Unavailable
Undocumented
Declaration
Objective-C
- (nonnull instancetype)init NS_UNAVAILABLE;
-
Unavailable
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)new NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
- (nonnull instancetype)initWithId:(nonnull NSString *)id type:(nonnull NSString *)type;
Swift
init(id: String, type: String)
-
The object’s identifier.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *id;
Swift
var id: String { get }
-
The object’s type.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *type;
Swift
var type: String { get }