react-native-camera通过导航器打开2次冻结应用程序

时间:2015-10-09 19:48:20

标签: javascript ios camera react-native

我在简单<Navigator />组件中包含的视图中使用https://github.com/lwansbrough/react-native-camera库。

在您导航回Home视图并尝试使用<Camera />重新加载视图之前,所有内容都按预期工作。控制台或Xcode中没有错误消息,这使得查明问题非常困难。

当我删除整个<Camera />组件时,导航按预期工作,视图重新加载正常。

github https://github.com/lwansbrough/react-native-camera/issues/80目前存在一个未解决的问题,但由于时间紧迫,我想知道是否有其他人找到了解决此问题的方法并且可以共享修复。

标准渲染方法:

render() {

    return (
        <View style={styles.outer}>

            <Overlay
                modalVisible={this.state.modalVisible}
                />

            <Camera
                ref="cam"
                style={styles.container}
                captureTarget={Camera.constants.CaptureTarget.disk}
                type={this.state.cameraType}>

                <TouchableHighlight style={styles.circlebutton} onPress={this._takePicture}>
                    <Text>Take Picture</Text>
                </TouchableHighlight>
            </Camera>

            <Image
                source={{uri: this.state.imageURI, isStatic:true}}
                style={{width: this.state.imageURI ? 100 : 0, height: this.state.imageURI ? 100 : 0, opacity: this.state.imageURI ? 1 : 0}}
                />
        </View>
    );
}

1 个答案:

答案 0 :(得分:2)

试试这个:

在Xcode上,转到RCTCamera.xcodeproj(这是反应原生库之一)

RCTCameraManager.h

添加属性 @property (nonatomic, strong) RCTCamera *camera;

RCTCameraManager.m

- (UIView *)view
{
    return [[RCTCamera alloc] initWithManager:self bridge:self.bridge];
}

替换为:

- (UIView *)view
{
    if(!self.camera){
        self.camera = [[RCTCamera alloc] initWithManager:self bridge:self.bridge];
        return self.camera;
    }
    return self.camera;
}

希望有所帮助。