1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| //
| // SVIndefiniteAnimatedView.h
| // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD
| //
| // Copyright (c) 2014-2023 Guillaume Campagna and contributors. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface SVIndefiniteAnimatedView : UIView
|
| @property (nonatomic, assign) CGFloat strokeThickness;
| @property (nonatomic, assign) CGFloat radius;
| @property (nonatomic, strong) UIColor *strokeColor;
|
| @end
|
|