Hibit_iOS/HiBit/Project/Player/View/GKDYVideoMaskView.h
2024-06-11 10:51:38 +08:00

27 lines
548 B
Objective-C
Executable File

//
// GKDYVideoMaskView.h
// GKDYVideo
//
// Created by QuintGao on 2023/3/22.
// Copyright © 2023 QuintGao. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, GKDYVideoMaskViewStyle) {
GKDYVideoMaskViewStyle_Top, // 顶部,(上->下)从深到浅
GKDYVideoMaskViewStyle_Bottom // 底部,(上->下)从浅到深
};
@interface GKDYVideoMaskView : UIView
- (instancetype)initWithStyle:(GKDYVideoMaskViewStyle)style;
- (void)clearColors;
@end
NS_ASSUME_NONNULL_END