cdts/xdts-ios 3/TreeHole/Code/Utility/PYWebViewController/JHUD/JHUDAnimationView.h
2023-07-27 09:20:00 +08:00

31 lines
633 B
Objective-C

//
// JHUDAnimationView.h
// JHudViewDemo
//
// Created by 晋先森 on 16/7/16.
// Copyright © 2016年 晋先森. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSUInteger, JHUDAnimationType) {
JHUDAnimationTypeCircle = 0,
JHUDAnimationTypeCircleJoin,
JHUDAnimationTypeDot,
};
@interface JHUDAnimationView : UIView
@property (nonatomic,assign) NSInteger count;
@property (nonatomic) UIColor *defaultBackGroundColor;//
@property (nonatomic) UIColor *foregroundColor;
- (void)showAnimationAtView:(UIView *)view animationType:(JHUDAnimationType)animationType;
-(void)removeSubLayer;
@end