我为反应本机创建了一个模块,它有多个视图控制器。 所以我为每个视图控制器使用 XIB。 但是 XIB 不会在库中加载。
RCT_EXPORT_METHOD(showFirstVC){
UIViewController *root = RCTPresentedViewController();
FVCViewController *ViewController = (FVCViewController *)[[UIViewController alloc] initWithNibName:@"FVCViewController" bundle:nil];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:ViewController];
navController.navigationBarHidden = YES;
[root presentViewController:ViewController animated:YES completion:nil];
}
你能帮我是否可以在 react native 的库中加载 XIB 或故事板吗?
添加任何资源,如这样,文件夹引用,然后需要文件类型:
s.resources = "ios/MiSnapSDK/MiSnapUX/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"