UIViewController+Category.h 544 B

1234567891011121314151617181920
  1. //
  2. // UIViewController+Category.h
  3. // 乐销
  4. //
  5. // Created by 隋林栋 on 2017/10/9.
  6. // Copyright © 2017年 ping. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIViewController (Category)
  10. @property (nonatomic, strong) void (^blockBack)(UIViewController *);//返回之后调用
  11. @property (nonatomic, strong) void (^blockWillBack)(UIViewController *);//返回之前调用
  12. @property (nonatomic, assign) int requestState;//请求结果,默认0,其余标示成功
  13. /**
  14. remove all child vc
  15. */
  16. - (void)removeAllChildVC;
  17. @end