UGCKitBGMProgressView.h 363 B

12345678910
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. @interface UGCKitBGMProgressView : UIView
  4. @property (strong, nonatomic, readonly) UILabel *label;
  5. @property (assign, nonatomic) float progress;
  6. @property (strong, nonatomic) UIColor *progressBackgroundColor;
  7. - (instancetype)initWithFrame:(CGRect)frame bgImage:(UIImage *)bgImage;
  8. @end