1234567891011121314151617181920212223242526 |
- //
- // JZLogginWindowManager.h
- // JIZHANG
- //
- // Created by kuxuan on 2017/12/25.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface JZLogginWindowManager : NSObject
- + (instancetype)sharedManager;
- @property (nonatomic,strong)UIWindow *window;
- //展示到window上
- - (void)show;
- //隐藏
- - (void)hide;
- //展示touchid
- - (void)showTouchId;
- //判断本身有没有展示
- @property (nonatomic,assign)BOOL isShow;
- @end
|