GMLoadingView.h 455 Bytes
Newer Older
翟国钧's avatar
翟国钧 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//
//  GMLoadingView.h
//  loadingAnimation
//
//  Created by wangyang on 12/23/14.
//  Copyright (c) 2014 WY. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSUInteger, GMLoadingViewType) {
    GMLoadingViewTypeGray,
    GMLoadingViewTypeGreenLarge,
    GMLoadingViewTypeGreenSmall
};

@interface GMLoadingView : UIView

+ (instancetype)loadingViewWithType:(GMLoadingViewType)type;
- (void)begingAnimation;
- (void)endAnimation;

@end