//// GMLoadingView.h// loadingAnimation//// Created by wangyang on 12/23/14.// Copyright (c) 2014 WY. All rights reserved.//#import <UIKit/UIKit.h>typedefNS_ENUM(NSUInteger,GMLoadingViewType){GMLoadingViewTypeGray,GMLoadingViewTypeGreenLarge,GMLoadingViewTypeGreenSmall};@interfaceGMLoadingView:UIView+(instancetype)loadingViewWithType:(GMLoadingViewType)type;-(void)begingAnimation;-(void)endAnimation;@end