diff --git a/ios/RNMBX/RNMBXAtmosphereComponentView.mm b/ios/RNMBX/RNMBXAtmosphereComponentView.mm index d5a6d4c44..63fc5d539 100644 --- a/ios/RNMBX/RNMBXAtmosphereComponentView.mm +++ b/ios/RNMBX/RNMBXAtmosphereComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXAtmosphereComponentView { RNMBXAtmosphere *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXBackgroundLayerComponentView.mm b/ios/RNMBX/RNMBXBackgroundLayerComponentView.mm index 2d036e3ca..1bb49fccc 100644 --- a/ios/RNMBX/RNMBXBackgroundLayerComponentView.mm +++ b/ios/RNMBX/RNMBXBackgroundLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXBackgroundLayerComponentView { RNMBXBackgroundLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXCalloutComponentView.mm b/ios/RNMBX/RNMBXCalloutComponentView.mm index 0802c5a23..83e6642a7 100644 --- a/ios/RNMBX/RNMBXCalloutComponentView.mm +++ b/ios/RNMBX/RNMBXCalloutComponentView.mm @@ -20,6 +20,12 @@ @implementation RNMBXCalloutComponentView { RNMBXCallout *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXCameraComponentView.mm b/ios/RNMBX/RNMBXCameraComponentView.mm index 7677a0185..114732c3f 100644 --- a/ios/RNMBX/RNMBXCameraComponentView.mm +++ b/ios/RNMBX/RNMBXCameraComponentView.mm @@ -20,6 +20,12 @@ @implementation RNMBXCameraComponentView { RNMBXCamera *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXCircleLayerComponentView.mm b/ios/RNMBX/RNMBXCircleLayerComponentView.mm index fc32582a5..c90c42177 100644 --- a/ios/RNMBX/RNMBXCircleLayerComponentView.mm +++ b/ios/RNMBX/RNMBXCircleLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXCircleLayerComponentView { RNMBXCircleLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm b/ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm index 351f9907d..72c7c5128 100644 --- a/ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm +++ b/ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXCustomLocationProviderComponentView { RNMBXCustomLocationProvider *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm b/ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm index faafad074..99a6b9019 100644 --- a/ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm +++ b/ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXFillExtrusionLayerComponentView { RNMBXFillExtrusionLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXFillLayerComponentView.mm b/ios/RNMBX/RNMBXFillLayerComponentView.mm index bda231002..c70f0afe2 100644 --- a/ios/RNMBX/RNMBXFillLayerComponentView.mm +++ b/ios/RNMBX/RNMBXFillLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXFillLayerComponentView { RNMBXFillLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXHeatmapLayerComponentView.mm b/ios/RNMBX/RNMBXHeatmapLayerComponentView.mm index 2999bdd07..d453992b3 100644 --- a/ios/RNMBX/RNMBXHeatmapLayerComponentView.mm +++ b/ios/RNMBX/RNMBXHeatmapLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXHeatmapLayerComponentView { RNMBXHeatmapLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXImageComponentView.mm b/ios/RNMBX/RNMBXImageComponentView.mm index 83ec4a0de..52d5630bc 100644 --- a/ios/RNMBX/RNMBXImageComponentView.mm +++ b/ios/RNMBX/RNMBXImageComponentView.mm @@ -20,6 +20,11 @@ @implementation RNMBXImageComponentView { RNMBXImage *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} - (instancetype)initWithFrame:(CGRect)frame { diff --git a/ios/RNMBX/RNMBXImageSourceComponentView.mm b/ios/RNMBX/RNMBXImageSourceComponentView.mm index 872746be4..c211f93ff 100644 --- a/ios/RNMBX/RNMBXImageSourceComponentView.mm +++ b/ios/RNMBX/RNMBXImageSourceComponentView.mm @@ -20,6 +20,12 @@ @implementation RNMBXImageSourceComponentView { RNMBXImageSource *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXImagesComponentView.mm b/ios/RNMBX/RNMBXImagesComponentView.mm index ec6cb350c..5bc0f4ca7 100644 --- a/ios/RNMBX/RNMBXImagesComponentView.mm +++ b/ios/RNMBX/RNMBXImagesComponentView.mm @@ -23,6 +23,12 @@ @implementation RNMBXImagesComponentView { RNMBXImages *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXLightComponentView.mm b/ios/RNMBX/RNMBXLightComponentView.mm index f89c1a8b0..61d0196c1 100644 --- a/ios/RNMBX/RNMBXLightComponentView.mm +++ b/ios/RNMBX/RNMBXLightComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXLightComponentView { RNMBXLight *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXLineLayerComponentView.mm b/ios/RNMBX/RNMBXLineLayerComponentView.mm index e58044646..85b8563bd 100644 --- a/ios/RNMBX/RNMBXLineLayerComponentView.mm +++ b/ios/RNMBX/RNMBXLineLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXLineLayerComponentView { RNMBXLineLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXMapViewComponentView.mm b/ios/RNMBX/RNMBXMapViewComponentView.mm index 475ec02f2..0e4b66acf 100644 --- a/ios/RNMBX/RNMBXMapViewComponentView.mm +++ b/ios/RNMBX/RNMBXMapViewComponentView.mm @@ -25,6 +25,12 @@ @implementation RNMBXMapViewEventDispatcher { RNMBXMapViewComponentView* _componentView; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithComponentView:(RNMBXMapViewComponentView*)componentView { if (self = [super init]) { _componentView = componentView; diff --git a/ios/RNMBX/RNMBXMarkerViewComponentView.mm b/ios/RNMBX/RNMBXMarkerViewComponentView.mm index cb423599f..17ce30770 100644 --- a/ios/RNMBX/RNMBXMarkerViewComponentView.mm +++ b/ios/RNMBX/RNMBXMarkerViewComponentView.mm @@ -20,6 +20,12 @@ @implementation RNMBXMarkerViewComponentView { RNMBXMarkerView *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXMarkerViewContentComponentView.mm b/ios/RNMBX/RNMBXMarkerViewContentComponentView.mm index 404168d54..fe15b9e94 100644 --- a/ios/RNMBX/RNMBXMarkerViewContentComponentView.mm +++ b/ios/RNMBX/RNMBXMarkerViewContentComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXMarkerViewContentComponentView { CGRect _frame; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXModelLayerComponentView.mm b/ios/RNMBX/RNMBXModelLayerComponentView.mm index ff5325d4e..a754fc7df 100644 --- a/ios/RNMBX/RNMBXModelLayerComponentView.mm +++ b/ios/RNMBX/RNMBXModelLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXModelLayerComponentView { RNMBXModelLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXModelsComponentView.mm b/ios/RNMBX/RNMBXModelsComponentView.mm index 5bb83691f..fe94bc647 100644 --- a/ios/RNMBX/RNMBXModelsComponentView.mm +++ b/ios/RNMBX/RNMBXModelsComponentView.mm @@ -23,6 +23,12 @@ @implementation RNMBXModelsComponentView { RNMBXModels *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXNativeUserLocationComponentView.mm b/ios/RNMBX/RNMBXNativeUserLocationComponentView.mm index 35320efa0..5889c8a22 100644 --- a/ios/RNMBX/RNMBXNativeUserLocationComponentView.mm +++ b/ios/RNMBX/RNMBXNativeUserLocationComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXNativeUserLocationComponentView { RNMBXNativeUserLocation *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXPointAnnotationComponentView.mm b/ios/RNMBX/RNMBXPointAnnotationComponentView.mm index 8c15b530f..cc8c07c4f 100644 --- a/ios/RNMBX/RNMBXPointAnnotationComponentView.mm +++ b/ios/RNMBX/RNMBXPointAnnotationComponentView.mm @@ -20,6 +20,12 @@ @implementation RNMBXPointAnnotationComponentView { RNMBXPointAnnotation *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXRasterDemSourceComponentView.mm b/ios/RNMBX/RNMBXRasterDemSourceComponentView.mm index baa61073f..aefd8c179 100644 --- a/ios/RNMBX/RNMBXRasterDemSourceComponentView.mm +++ b/ios/RNMBX/RNMBXRasterDemSourceComponentView.mm @@ -20,6 +20,11 @@ @implementation RNMBXRasterDemSourceComponentView { RNMBXRasterDemSource *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} - (instancetype)initWithFrame:(CGRect)frame { diff --git a/ios/RNMBX/RNMBXRasterLayerComponentView.mm b/ios/RNMBX/RNMBXRasterLayerComponentView.mm index 00f76d833..deb482876 100644 --- a/ios/RNMBX/RNMBXRasterLayerComponentView.mm +++ b/ios/RNMBX/RNMBXRasterLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXRasterLayerComponentView { RNMBXRasterLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXRasterSourceComponentView.mm b/ios/RNMBX/RNMBXRasterSourceComponentView.mm index 212454667..b1455600a 100644 --- a/ios/RNMBX/RNMBXRasterSourceComponentView.mm +++ b/ios/RNMBX/RNMBXRasterSourceComponentView.mm @@ -20,6 +20,11 @@ @implementation RNMBXRasterSourceComponentView { RNMBXRasterSource *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} - (instancetype)initWithFrame:(CGRect)frame { diff --git a/ios/RNMBX/RNMBXShapeSourceComponentView.mm b/ios/RNMBX/RNMBXShapeSourceComponentView.mm index 907fd1808..8ae0caf36 100644 --- a/ios/RNMBX/RNMBXShapeSourceComponentView.mm +++ b/ios/RNMBX/RNMBXShapeSourceComponentView.mm @@ -21,6 +21,11 @@ @implementation RNMBXShapeSourceComponentView { RNMBXShapeSource *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} - (instancetype)initWithFrame:(CGRect)frame { diff --git a/ios/RNMBX/RNMBXSkyLayerComponentView.mm b/ios/RNMBX/RNMBXSkyLayerComponentView.mm index 5aa30f4c0..9dcdef5bf 100644 --- a/ios/RNMBX/RNMBXSkyLayerComponentView.mm +++ b/ios/RNMBX/RNMBXSkyLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXSkyLayerComponentView { RNMBXSkyLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXStyleImportComponentView.mm b/ios/RNMBX/RNMBXStyleImportComponentView.mm index 2e146bfb9..09ab096e8 100644 --- a/ios/RNMBX/RNMBXStyleImportComponentView.mm +++ b/ios/RNMBX/RNMBXStyleImportComponentView.mm @@ -18,6 +18,12 @@ @implementation RNMBXStyleImportComponentView { RNMBXStyleImport *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXSymbolLayerComponentView.mm b/ios/RNMBX/RNMBXSymbolLayerComponentView.mm index fa6cafc1a..edf57f445 100644 --- a/ios/RNMBX/RNMBXSymbolLayerComponentView.mm +++ b/ios/RNMBX/RNMBXSymbolLayerComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXSymbolLayerComponentView { RNMBXSymbolLayer *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXTerrainComponentView.mm b/ios/RNMBX/RNMBXTerrainComponentView.mm index bdd8d2dbd..8940b8ff5 100644 --- a/ios/RNMBX/RNMBXTerrainComponentView.mm +++ b/ios/RNMBX/RNMBXTerrainComponentView.mm @@ -21,6 +21,12 @@ @implementation RNMBXTerrainComponentView { RNMBXTerrain *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { diff --git a/ios/RNMBX/RNMBXVectorSourceComponentView.mm b/ios/RNMBX/RNMBXVectorSourceComponentView.mm index 138b9b1cb..6fa2cb08d 100644 --- a/ios/RNMBX/RNMBXVectorSourceComponentView.mm +++ b/ios/RNMBX/RNMBXVectorSourceComponentView.mm @@ -20,6 +20,11 @@ @implementation RNMBXVectorSourceComponentView { RNMBXVectorSource *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} - (instancetype)initWithFrame:(CGRect)frame { diff --git a/ios/RNMBX/RNMBXViewportComponentView.mm b/ios/RNMBX/RNMBXViewportComponentView.mm index 24dfa54d3..df6986ae5 100644 --- a/ios/RNMBX/RNMBXViewportComponentView.mm +++ b/ios/RNMBX/RNMBXViewportComponentView.mm @@ -57,6 +57,12 @@ @implementation RNMBXViewportComponentView { RNMBXViewport *_view; } +// Needed because of this: https://github.com/facebook/react-native/pull/37274 ++ (void)load +{ + [super load]; +} + - (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) {