Xcode 7.0 (7A220) と iOS 9.0 に問題があります。と を使用してビデオ (.mp4 または mov、どちらも機能しない) を追加しAVPlayer
ますSKVideoNode
。iOS 8.4 のシミュレーターでは正常に動作していますが、iOS 9.0 (シミュレーターも) ではビデオが表示されません。音声は聞こえますが。
GameScene
私の(クラスの)コードSKScene
:
-(void)didMoveToView:(SKView *)view {
NSURL *fileURL = [NSURL fileURLWithPath: [[NSBundle mainBundle] pathForResource:@"VideoName" ofType:@"mp4"]];
_player = [AVPlayer playerWithURL: fileURL];
_videoNode = [[SKVideoNode alloc] initWithAVPlayer:_player];
_videoNode.size = CGSizeMake(200, 100);
_videoNode.position = CGPointMake(200, 200);
_videoNode.zPosition = 1000;
[self addChild:_videoNode];
_player.volume = 0.5;
[_videoNode play];
}
私はこれUIViewController
を持っています:
- (void)viewDidLoad
{
[super viewDidLoad];
// Configure the view.
SKView * skView = (SKView *)self.view;
skView.showsFPS = YES;
skView.showsNodeCount = YES;
/* Sprite Kit applies additional optimizations to improve rendering performance */
// I have set this to NO, but it doesn't help
skView.ignoresSiblingOrder = NO;
// Create and configure the scene.
CGRect rect = [[UIScreen mainScreen] bounds];
GameScene *videoScene = [[GameScene alloc] initWithSize:rect.size];
videoScene.scaleMode = SKSceneScaleModeAspectFill;
GameScene *scene = [GameScene unarchiveFromFile:@"GameScene"];
scene.scaleMode = SKSceneScaleModeAspectFill;
// Present the scene.
[skView presentScene:videoScene];
}
そのため、アプリはクラッシュせず、ビデオは再生されています (聞こえる) が、ビデオは iOS 9 でのみ表示されません。誰かがそれを修正する考えを持っていますか?