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.
18 lines
407 B
18 lines
407 B
1 year ago
|
//
|
||
|
// SVIndefiniteAnimatedView.h
|
||
|
// SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD
|
||
|
//
|
||
|
// Copyright (c) 2014-2019 Guillaume Campagna. 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
|
||
|
|