21 lines
351 B
Objective-C
Executable File
21 lines
351 B
Objective-C
Executable File
//
|
|
// XYloading.h
|
|
// XiYuanPlus
|
|
//
|
|
// Created by lijie lijie on 2018/4/25.
|
|
// Copyright © 2018年 Hoping. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
typedef enum : NSUInteger {
|
|
MaskType_None = 0,
|
|
MaskType_Clear = 1,
|
|
} MaskType;
|
|
@interface XYloading : UIView
|
|
|
|
+ (void)showWithStrings:(NSString *)contentStr;
|
|
|
|
+ (void)dismiss;
|
|
|
|
@end
|