ZFPlayer 抖音样式(Douyin style) 播放闪烁 #970

以官方demo为例

首先把ZFDouYinControlView.m文件下coverImageView effectView bgImgView 的初始化注视掉

然后在ZFDouyinCollectionViewController  的viewDidLoad 里面加入

self.player.zf_playerShouldPlayInScrollView = ^(NSIndexPath * _Nonnull indexPath) {

        NSLog(@"%@",indexPath);

        @strongify(self)

        ZFDouyinCollectionViewCell *cell = (ZFDouyinCollectionViewCell*)[self.collectionView cellForItemAtIndexPath:indexPath];

        for(UIView*firstViewincell.subviews) {

            for(UIView*lastViewinfirstView.subviews) {

                if(lastView.tag==kPlayerViewTag) {

                    for(UIView*playerPresentViewinlastView.subviews) {

                        playerPresentView.backgroundColor= [UIColorclearColor];

                    }

                }

            }

        }

    };

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。