18 lines
450 B
Objective-C
Executable File
18 lines
450 B
Objective-C
Executable File
//
|
|
// 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
|