TUICircleLodingView.h 483 B

123456789101112131415161718192021
  1. //
  2. // TUICircleLodingView.h
  3. // TUIChat
  4. //
  5. // Created by wyl on 2023/4/24.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUICircleLodingView : UIView
  11. @property(nonatomic, strong) UILabel *labProgress;
  12. @property(nonatomic, strong) CAShapeLayer *progressLayer;
  13. @property(nonatomic, strong) CAShapeLayer *grayProgressLayer;
  14. // 【0,1.0】
  15. @property(nonatomic, assign) double progress;
  16. @end
  17. NS_ASSUME_NONNULL_END