gpt4 book ai didi

ios - 为 ios react-native itc deploy 加载 ios/main.bundle js 时遇到问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:09:26 24 4
gpt4 key购买 nike

我正在尝试为我的 ios 应用程序首次部署到 itc,该应用程序现在包含一个 react-native View 。我使用

创建了包
react-native bundle --entry-file index.ios.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios

但我似乎无法弄清楚切换 jsCodeLocation 以使用新包的语法。我找到的大多数指南都在 obj-c 中,无法弄清楚我的命令有什么问题。当我在这里设置断点时,我发现它返回 jsCodeLocation nil。

  func loadReactNativeView () {
//let jsCodeLocation : URL = RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index.ios", fallbackResource: nil)

let jsCodeLocation = Bundle.main.url(forResource: "main", withExtension: "jsbundle", subdirectory: "ios")

let rootView : RCTRootView = RCTRootView(bundleURL: jsCodeLocation, moduleName: "HealthStorylines", initialProperties: [:], launchOptions: [:])
rootView.backgroundColor = #colorLiteral(red: 0.2745098174, green: 0.4862745106, blue: 0.1411764771, alpha: 1)
let frame = CGRect(x: 0, y: 0, width: self.view.bounds.width, height: self.view.bounds.height - 49)
rootView.frame = frame
self.view.addSubview(rootView)
}

帮助非常感谢并需要有关如何调试的建议

最佳答案

我在 AppDelegate.swift 中使用了这种方法。我知道答案可能会迟到,但对于其他到达这里的人

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

let jsCodeLocation: URL = RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index", fallbackResource:nil)
let rootView = RCTRootView(bundleURL: jsCodeLocation, moduleName: GlobalConstants.appName, initialProperties: nil, launchOptions: launchOptions)
let rootViewController = UIViewController()
rootViewController.view = rootView

self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = rootViewController
self.window?.makeKeyAndVisible()

return true
}

其中 GlobalConstants.appName 是一个包含您的应用名称“ExampleApp”的字符串

关于ios - 为 ios react-native itc deploy 加载 ios/main.bundle js 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44954353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com