ios - 使用 React Native 组件的 UIImagePickerController 覆盖 View
<p><p>我想使用 React Native 组件定义一个 <code>UIImagePickerController</code> 覆盖 View 。我正在设置为 Marc Shilling 精彩 <a href="https://github.com/marcshilling/react-native-image-picker" rel="noreferrer noopener nofollow">react-native-image-picker</a> 添加一个新选项.我希望 <code>ImagePickerManager.launchCamera</code> 函数将 <code><View></code> 和子项作为其参数之一,渲染它,并将其传递给 <code>UIImagePickerController.cameraOverlayView</code>。我已经走到这一步了:</p>
<p>在 ImagePickerManager.m 中:</p>
<pre><code>NSNumber *viewTag = ;
if (!] && viewTag != 0) {
UIView *view = ;
;
}
</code></pre>
<p>但这需要我在 JS 端做一些扭曲才能得到一个组件实例。</p>
<pre><code>React.createClass({
render: function() {
return (
<View>
<TouchableHighlight onPress={this._showCamera}><Text>Camera</Text></TouchableHighlight>
<View ref="foo"><Text>On top of the camera!</Text></View>
</View>
);
},
_showCamera: function() {
var options = {
overlayNode: React.findNodeHandle(this.refs.foo),
};
ImagePickerManager.launchCamera(options, (response)=> {
});
}
});
</code></pre>
<p>如果我尝试说 <code>overlayNode: React.findNodeHandle(<View ref="foo"><Text>On top of the camera!</Text></View>)</code>,我会得到一个红框>.</p>
<p>我尝试创建一个新的 <code>RCTRootView</code> 并通过 <code>AppRegistry.registerComponent</code> 注册覆盖,但我没有看到任何实际呈现在屏幕上的内容。 </p>
<pre><code>NSString *overlayRootName = ;
if (!] && overlayRootName.length != 0) {
RCTRootView *rootView = [ initWithBridge:self.bridge moduleName:overlayRootName initialProperties:nil];
;
}
</code></pre>
<p>我在这里错过了什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>后一种解决方案(声明一个替代的 <code>RCTRootView</code>)最终成为了对我有用的解决方案。我遇到的问题是,由于某种原因,我通过添加 <code>@synthesize bridge = _bridge;</code> 在 <code>ImagePickerManager</code> 中获得的桥在 <code> 中使用时没有呈现任何内容initWithBridge</code>.</p>
<p>相反,我在我的 <code>AppDelegate</code> 中添加了一个字段,以公开在 <code>application: didFinishLaunchingWithOptions:</code> 中创建的桥接器,这很像 <a href="https://github.com/dsibiski/react-native-hybrid-app-examples/blob/master/iOS/RNEmbeddedAppExample/AppDelegate.h" rel="noreferrer noopener nofollow">in this hybrid app example</a> .当我在 <code>initWithBridge</code> 中使用 <em>that</em> 桥时,覆盖层会呈现在屏幕上。还要确保将 <code>rootView.frame</code> 和 <code>rootView.backgroundColor</code> 显式设置为透明。 </p>
<p> <a href="/image/f68R4.png" rel="noreferrer noopener nofollow"><img src="/image/f68R4.png" alt="Screenshot of UIImagePicker with React Native Overlay"/></a> </p></p>
<p style="font-size: 20px;">关于ios - 使用 React Native 组件的 UIImagePickerController 覆盖 View ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/36567545/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/36567545/
</a>
</p>
页:
[1]