2017-11-17 18 views
0

私は目的で-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]; 

しかしが表示されていませんか?

+0

を設定してみてください、あなたは、ビデオ・ビューのフレーム/境界を設定しようとしたことがありますか? –

答えて

0

は境界

// 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]; 
_vvv.frame = self.bounds; 
[ self.avPlayer play]; 
+0

ありがとう..................... – jesteena

+0

私はuiviewcontrollerが次のscreen.howに行くまでビデオを繰り返す必要があります – jesteena

+0

try:self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEnd.play –

関連する問題