Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add load method #3594

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXAtmosphereComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXBackgroundLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCalloutComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCameraComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCircleLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXFillLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXHeatmapLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXImageComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXImageSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXImagesComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXLightComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXLineLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMapViewComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMarkerViewComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMarkerViewContentComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXModelLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXModelsComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXNativeUserLocationComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXPointAnnotationComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXRasterDemSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXRasterLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXRasterSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXShapeSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXSkyLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXStyleImportComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXSymbolLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXTerrainComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXVectorSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXViewportComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
Loading