8
    NSString *urlPath;
    NSURL *videoUrl;

    urlPath = [[NSBundle mainBundle] pathForResource:@"fogLoop" ofType:@"mp4"];
    videoUrl = [NSURL fileURLWithPath:urlPath];

    avPlayer = [AVPlayer playerWithURL:videoUrl];
    avPlayerLayer = [AVPlayerLayer playerLayerWithPlayer:avPlayer];

    avPlayerLayer.frame = videoView.layer.bounds;

    avPlayerLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

    [videoView.layer addSublayer: avPlayerLayer];

    avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(playerItemDidReachEnd:)
                                                 name:AVPlayerItemDidPlayToEndTimeNotification
                                               object:[avPlayer currentItem]];

    [avPlayer play];

このビューにはいくつかのUILabelがあります。本当に背景要素としてビデオが欲しいだけです。このコードでは、すべてのUI要素を再生しているように見えます。どうすればバックグラウンドに移動できますか?

4

1 に答える 1

7

ビューのレイヤー(CALayerオブジェクト)のzPositionプロパティを使用して、ビューのz-indexを変更できます。

 theView.layer.zPosition = 1;

そしてラベルを前面に持ってきます

于 2013-02-18T09:21:12.683 に答える