// // 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