Files
yuyin_ios/SweetParty/常用工具/MBmanager弹框提示/XYloading.h
2025-08-08 11:05:33 +08:00

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