私は目的で-cを開発中です。ビデオは、設定するvvv.HowのUIViewの中で私のUIViewControlleriOSのUIViewでのビデオ再生
.hファイル
@property(weak,nonatomic)IBOutlet UIView *vvv;
.mファイル
// to play the video
NSString *filepath = [[NSBundle mainBundle] pathForResource:@"alphabet learning splash" ofType:@"mp4"];
NSURL *fileURL = [NSURL fileURLWithPath:filepath];
self.avPlayer = [AVPlayer playerWithURL:fileURL];
self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;
AVPlayerLayer *videoLayer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
[_vvv.layer addSublayer:videoLayer];
[self.view addSubview:_vvv];
[ self.avPlayer play];
で
しかしが表示されていませんか?
を設定してみてください、あなたは、ビデオ・ビューのフレーム/境界を設定しようとしたことがありますか? –