xcode的:"线程1:信号SIGABRT"

时间:2018-01-18 12:43:34

标签: ios xcode react-native

我正在使用react-native-video遵循官方文档说明,并且在Android下它可以正常使用。但是在IOS下,每当我使用Video组件点击页面时,Xcode都会在main.m中抛出错误:

  

"线程1:信号SIGABRT"。

enter image description here

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

{audio_url ? (
 <Video
   source={uri}
   ref={(el) => { this.player = el; }}
   rate={1.0}
   paused={!this.state.status}
   repeat={false}
   muted={false}
   volume={4.0}
   ignoreSilentSwitch="ignore"
   onLoadStart={this._handleLoadStart}
 />) : null}
我发现如果在外面放一层三元运算符就不会出现上面的问题,但是有一个新问题,音频不健全!