18 lines
450 B
C
18 lines
450 B
C
|
|
//
|
||
|
|
// SVProgressAnimatedView.h
|
||
|
|
// SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD
|
||
|
|
//
|
||
|
|
// Copyright (c) 2017-2018 Tobias Tiemerding. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@interface SVProgressAnimatedView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, assign) CGFloat radius;
|
||
|
|
@property (nonatomic, assign) CGFloat strokeThickness;
|
||
|
|
@property (nonatomic, strong) UIColor *strokeColor;
|
||
|
|
@property (nonatomic, assign) CGFloat strokeEnd;
|
||
|
|
|
||
|
|
@end
|