我正在尝试使用react native在IOS上播放视频。我正在尝试使用MediaPlayerState来控制视频播放。
MediaPlayerState构造函数返回已定义的对象,但play()不起作用,因为它未定义。
import MediaPlayerState from 'react-native-video';
constructor(props) {
super(props);
this.state = {
playerState: new MediaPlayerState({autoPlay: false, muted: true}) // init with muted, autoPlay
};
当然,总是定义this.state.playerState。 但是this.state.playerState.play()是未定义的。我错过了什么吗?
感谢。