changsanjiang / SJBaseVideoPlayer

video player. rotation, volume, brightness, rate, play, pause, stop, seekToTime, present.
MIT License
128 stars 52 forks source link

How to enable thumbimage on seek bar? #15

Closed DaniyalTD closed 3 years ago

DaniyalTD commented 3 years ago

How to enable thumbimage on seek bar?

changsanjiang commented 3 years ago

@DaniyalTD

    SJVideoPlayer.updateResources(^(id<SJVideoPlayerControlLayerResources>  _Nonnull resources) {
        resources.progressThumbImage = [UIImage imageNamed:@"thumb"];
        // or
        // resources.progressThumbSize = 8;
        // resources.progressThumbColor = UIColor.blueColor;
    });