1234567891011121314151617181920 |
- //
- // CMView+CM.h
- // JustMeTalk
- //
- // Created by 陈民 on 2018/4/12.
- // Copyright © 2018年 陈民. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIWindow (root)
- + (UIWindow *)yt_window;
- @end
- @interface UIViewController (root)
- ///当页面进入堆栈的时候是需要被移除的
- @property (nonatomic, assign) BOOL isNeedToClosed;
- - (void)back;
- @end
|