BeizerView.h
327 字节
//
// BeizerView.h
// DreamSleep
//
// Created by peter on 2022/7/2.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 自定义贝塞尔曲线
@interface BeizerView : UIView
@property (nonatomic, assign) float progressRate;
- (void)animateProgress:(float)progress animate:(BOOL)animate;
@end
NS_ASSUME_NONNULL_END