mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
4553f87489
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53591 Reviewed By: rshest Differential Revision: D81571883 fbshipit-source-id: 479a0764eabeac968028814ec6aafa32687b0905
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <React/RCTLog.h>
|
|
#import <React/RCTUIManager.h>
|
|
#import <React/RCTViewManager.h>
|
|
#import "UIView+ColorOverlays.h"
|
|
|
|
@interface RNTMyNativeViewManager : RCTViewManager
|
|
@end
|
|
|
|
@implementation RNTMyNativeViewManager
|
|
|
|
RCT_EXPORT_MODULE(RNTMyNativeView)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(backgroundColor, UIColor)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(onIntArrayChanged, RCTBubblingEventBlock)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(values, NSArray *)
|
|
|
|
RCT_EXPORT_METHOD(callNativeMethodToChangeBackgroundColor : (nonnull NSNumber *)reactTag color : (NSString *)color)
|
|
{
|
|
[self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
|
|
UIView *view = viewRegistry[reactTag];
|
|
if ((view == nullptr) || ![view isKindOfClass:[UIView class]]) {
|
|
RCTLogError(@"Cannot find NativeView with tag #%@", reactTag);
|
|
return;
|
|
}
|
|
|
|
[view setBackgroundColorWithColorString:color];
|
|
}];
|
|
}
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[UIView alloc] init];
|
|
}
|
|
|
|
@end
|