1234567891011121314151617181920212223 |
- //
- // GlobalPopQueneManager.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/15.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface GlobalPopQueneManager : NSObject
- @property (nonatomic, strong) NSMutableArray *alertArray;
- @property (nonatomic, assign) BOOL isShowing;
- + (instancetype)shareManager;
- @end
- NS_ASSUME_NONNULL_END
|