因此,我需要使用为iOS和Android本机创建的框架。我已经在ViewController.m上成功设置了它。
是否可以将我的ViewController导出到React-Native项目并将其注册为屏幕。因此,例如,如果我想导航到我的本机UIViewController,那么我会去做类似的事情:
return new Promise(resolve => {
return resolve(Navigation.push(this.props.componentId, {
component: {
name: "MyNativeController",
options: {
topBar: {
drawBehind: true,
visible: false,
animate: false,
},
},
},
}));
});
这似乎是不可能完成的任务。 :)