Most effective method for video as background in iOS

前端 未结 5 1661
不知归路
不知归路 2020-12-24 03:30

Perhaps you have noticed one of the latest trend in iOS-apps: Using videos as backgrounds - mainly at login- or \"first launch\" screens. Yesterday I attempted to mimic this

5条回答
  •  执念已碎
    2020-12-24 03:36

    For iOS9, I used Andrius' code and added the following for the loop:

    -(void)replayBG:(NSNotification *)n {
        [playerLayer.player seekToTime:kCMTimeZero];
        [playerLayer.player play];
    }
    

提交回复
热议问题