我们如何在 React Native for iOS 中调整 RCTRootView 的大小/开始?
Posted
技术标签:
【中文标题】我们如何在 React Native for iOS 中调整 RCTRootView 的大小/开始?【英文标题】:How do we adjust the size/inset of an RCTRootView in ReactNative for iOS? 【发布时间】:2018-06-02 00:55:47 【问题描述】:我无法在 ios 中调整 RCTRootView 的大小。
设置框架高度和原点对视图没有任何影响。
有人知道如何调整 RCTRootView 的大小或 layoutMargins 吗?
【问题讨论】:
你能贴一些代码或任何图像文件 您放入的视图大小是否正确? 【参考方案1】:使用约束并使用 this -> rootView.sizeFlexibility = RCTRootViewSizeFlexibility.widthAndHeight
或直接 set Frame
的 RCTRootView
。
【讨论】:
【参考方案2】:如果您将 RCTRootView 加载到以下位置,您似乎无法执行此操作:
- (void)loadView
...
正确的做法是:
// SomeViewController.m
- (void)viewDidLoad
[...]
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:appName
initialProperties:props];
rootView.frame = CGRectMake(0, 0, self.view.width, 200);
[self.view addSubview:rootView];
如参考:https://facebook.github.io/react-native/docs/communication-ios.html
【讨论】:
以上是关于我们如何在 React Native for iOS 中调整 RCTRootView 的大小/开始?的主要内容,如果未能解决你的问题,请参考以下文章
iOS 14.5 App Tracking Transparency for firebase log in react-native app
React-native:如何从 Windows 构建 ios
如何在 React Native for Android 中调整字体大小以适应视图?
React Native 0.63.2 iOS Build Error with `ld: library not found for -lAppAuth`