19 lines
299 B
Objective-C
19 lines
299 B
Objective-C
|
|
//
|
||
|
|
// CircularProgressBar.h
|
||
|
|
// TestGameWeb
|
||
|
|
//
|
||
|
|
// Created by Mac on 2024/1/30.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface CircularProgressBar : UIView
|
||
|
|
-(void)updateUI;
|
||
|
|
-(void)animateCircleWithStrokeEnd:(float)end;
|
||
|
|
-(void)setProgress:(float)value;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|