ios - RCTBridge 始终为零
<p><p>我已经将 React Native 用于移动应用项目一年多了。我有一个本地组件将 BLE 堆栈桥接到应用程序的 React Native 部分。最近我升级到 XCode 9.1 版,我无法让 React-Native Bridge 在 iOS 版本中工作。 RCTBridge 总是 <code>nil</code> 所以我永远不能使用 <code>eventDispatcher()</code>。这是我的设置:</p>
<p>我有一个原生 Swift 组件,我通过桥接头将其集成到应用程序中。组织结构如下:</p>
<pre><code>BLEScanner.swift (This is the native component)
BluetoothModuleBridge.m
Module-Practive-Bridging-Header.h (The bridging header)
</code></pre>
<p>每个文件的相关代码片段:</p>
<p><strong>BLEScanner.swift</strong></p>
<pre><code>import Foundation
@objc(BLEScanner)
class BLEScanner: NSObject {
//....
var bridge: RCTBridge!// THIS IS ALWAYS NIL
//....
@objc func requestBluetoothState() -> Void {
print("REQUEST BLE STATE")
let ret = [
"enabled" : true
]
//THIS LINE WILL FAIL BECAUSE bridge IS NIL
self.bridge.eventDispatcher().sendDeviceEvent(withName: "BluetoothStateEvent", body: ret)
}
}
</code></pre>
<p><strong>BluetoothModuleBridge.m</strong></p>
<pre><code>#import <React/RCTBridgeModule.h>
@interface RCT_EXTERN_MODULE(BLEScanner, NSObject)
RCT_EXTERN_METHOD(requestBluetoothState)
@end
</code></pre>
<p><strong>Module-Practive-Bridging-Header.h</strong></p>
<pre><code>// BluetoothModule-Bridging-Header.h
#import <React/RCTBridge.h>
#import <React/RCTBridgeModule.h>
#import <React/RCTEventDispatcher.h>
#import <React/RCTRootView.h>
#import <React/RCTUtils.h>
#import <React/RCTConvert.h>
#import "AppDelegate.h"
#import "BugsnagReactNative/BugsnagReactNative.h"
#import "nokeLockSDK.h"
#import "nokeServerSDK.h"
#import "TI_aes_128.h"
</code></pre>
<p><strong>我的尝试</strong></p>
<ul>
<li>将 React Native 从 0.36 更新到 0.50.3</li>
<li>尝试在多台设备上运行</li>
<li>在旧版本的 XCode 上试用过</li>
<li>尝试在不同的机器上编译</li>
<li>与运行并使用相同设计的类似应用相比。 </li>
</ul>
<p>我很困惑为什么 <code>RCTBridge</code> 返回为零。对我来说,XCode 更新会导致这种情况似乎很奇怪,但是,这是唯一的更改。 </p>
<p>谁能指出我调试这个问题的正确方向?</p>
<p>我正在使用 XCode 9.1 和 React Native 0.50.3</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您不必继承 <code>RCTEventEmitter</code>。只需添加 <code>@objc</code> 属性。所以变量应该是 <code>@objc var bridge: RCTBridge!</code></p></p>
<p style="font-size: 20px;">关于ios - RCTBridge 始终为零,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/47291912/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/47291912/
</a>
</p>
页:
[1]