You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
450 B
17 lines
450 B
// |
|
// SVProgressAnimatedView.h |
|
// SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD |
|
// |
|
// Copyright (c) 2017-2019 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
|
|
|