MBMFeatureExtensionValue


@interface MBMFeatureExtensionValue : NSObject

A value or a collection of a feature extension.

  • 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)initWithValue:(nullable id)value
                        featureCollection:(nullable NSArray<MBXFeature *> *)featureCollection NS_REFINED_FOR_SWIFT;
  • An optional value of a feature extension

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) id value;

    Swift

    var value: Any? { get }
  • An optional array of features from a feature extension.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSArray<MBXFeature *> *featureCollection;