rest

Results 10 comments of rest

[[RCTBridge alloc] initWithBundleURL:jsCodeLocation moduleProvider:nil launchOptions:appDelegate.launchOptions]; [appDelegate.bridge.batchedBridge executeSourceCode:sourceBuz sync:NO]; 多次执行加载基础包和加载业务包的方法,程序崩溃

解决了么我遇到同样的问题, 多次重新加载基础包和业务包导致程序崩溃

我发现这个方法可以让当前的 Bridge 失效,可以清楚缓存。 在调用之后重新加载基础包就可以。 [appDelegate.bridge invalidate];

我是这样做的,每次加载一个业务包的时候都重新加载一次基础包,但是会产生一个问题,内存不断增加,不知道怎么释放这个一直增加的内存?

Podfile add: post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = "arm64" end end end and: Build Settings -> Excluded Architectures-> Any iOS Simulator SDK-> arm64。

我也碰到同样的问题 我的升级的版本号是0.63.4

> I'm facing the same issue upgrading to 0.71.1 with M1 I don't know if you have solved this problem. I hope you can be prompted. Thank you

region 是不是被废弃了,想知道有什么替代方法,让所有的点都显示到屏幕里