我正在开发一个 React Native 应用程序。
该应用程序由基于 Web 的视图和本机 ui 视图(组件)组成。
虽然基于 Web 的视图和本机 ui 视图的渲染工作正常,但我无法操作本机 ui 视图的属性,例如背景颜色。
我不得不说我的项目结构并不是那么简单,因为我做了很多桥接,从 React 到 Objective-C,从 Objective-C 到 Swift 等等。
简单介绍一下我的项目结构:
我的UIView.h
#import <UIKit/UIKit.h>
// Define which methods and properties have to be implemented in MyUIView
@interface MyUIView : UIView
@end
我的UIView.m
#import "MyUIView.h"
// Represents the native MyUIView
@implementation MyUIView
-(instancetype) init {
self = [super init];
if (self) {
[self setUp];
}
return self;
}
-(void) setUp {
UIView * myUIView = [[UIView alloc] initWithFrame:CGRectMake(-50, -250, 100, 100)];
[myUIView setBackgroundColor:[UIColor grayColor]];
[self addSubview:myAudioRecorderUIView];
}
@end
MyUIManager.h
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <React/RCTViewManager.h>
@interface MyUIManager : RCTViewManager
@property (nonatomic, strong) UIView *myUIView;
- (void) changeBackgroundColor: (UIColor*)color;
@end
MyUIManager.m
#import "MyUIManager.h"
#import "reactnative-Swift.h"
#import "MyUIView.h"
#import <UIKit/UIKit.h>
@import UIKit;
// Controls the rendering of native view in the React part of our application
@implementation MyUIManager
MyUIManager *myUIManager;
MyUIView *myUIView;
+ (void) initialize {
myUIManager = [MyUIManager allocWithZone: nil];
myUIView = [[MyUIView alloc] init];
}
+ (id) allocWithZone:(NSZone *)zone {
static MyUIManager *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [super allocWithZone:zone];
});
return sharedInstance;
}
- (void) changeBackgroundColor: (UIColor*)color {
dispatch_sync(dispatch_get_main_queue(), ^{
self.myUIView.backgroundColor = UIColor.redColor;
});
}
RCT_EXPORT_MODULE()
- (UIView *) view
{
return myUIView;
}
@end
MyViewController.swift
import Foundation
import UIKit
@objc open class MyViewController : UIViewController {
let myUIManager: MyUIManager = MyUIManager();
@objc func changeColor() {
myUIManager.changeBackgroundColor(UIColor.red)
}
}
我期望的是,从我的 Swift 类调用 changeColor 方法会改变我本机 ui 视图的颜色,因为 myUIManager 的 changeBackgroundColor 是在设置颜色的地方调用的。不过颜色确实变了。它保持灰色,就像在 MyUIView.m 的 setUp 方法中定义的一样。
有什么建议么?