UIWindow+root.h 375 B

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