mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-29 02:07:49 +08:00
19 lines
342 B
Objective-C
19 lines
342 B
Objective-C
//
|
|
// SVIndefiniteAnimatedView.h
|
|
// SVProgressHUD
|
|
//
|
|
// Created by Guillaume Campagna on 2014-12-05.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface SVIndefiniteAnimatedView : UIView
|
|
|
|
@property (nonatomic, assign) CGFloat strokeThickness;
|
|
@property (nonatomic, assign) CGFloat radius;
|
|
@property (nonatomic, strong) UIColor *strokeColor;
|
|
|
|
@end
|
|
|