SKVideoNode воспроизводит звук, но не отображает видео
Привет всем, я пытаюсь добавить видео на сцену, я слышу это, но не вижу, какие-либо идеи, что я делаю неправильно?
мои настройки:
импортировать AVFoundation/AVFoundation.h
добавлена библиотека AVFoundation
-(void)didMoveToView:(SKView *)view {
fileURL = [NSURL fileURLWithPath: [[NSBundle mainBundle] pathForResource:@"bait" ofType:@"m4v"]];
NSLog(@"FileName %@",fileURL.path);
AVPlayer* _player = [AVPlayer playerWithURL: fileURL];
SKVideoNode* _videoNode = [[SKVideoNode alloc] initWithAVPlayer:_player];
_videoNode.size = CGSizeMake(self.frame.size.width,self.frame.size.height);
NSLog(@"SKVideoNode W:%f H:%f",_videoNode.size.width,_videoNode.size.height);
_videoNode.position = CGPointMake(self.frame.size.width/2.0f,self.frame.size.height/2.0f);
_videoNode.zPosition = 1000;
[self addChild:_videoNode];
_player.volume = 0.5;
[_videoNode play];
}