ZCBaseVC.h 634 B

12345678910111213141516171819202122232425
  1. //
  2. // ZCBaseVC.h
  3. // HuaKaiChat
  4. //
  5. // Created by 张灿 on 2017/6/27.
  6. // Copyright © 2017年 huakai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import "RTRootNavigationController.h"
  10. typedef void(^SwipeHideNav)(void);
  11. typedef void(^SwipeShowNav)(void);
  12. @interface ZCBaseVC : UIViewController
  13. @property (nonatomic,copy)SwipeHideNav hideNav;
  14. @property (nonatomic,copy)SwipeShowNav showNav;
  15. @property (nonatomic,copy)NSString *contentUrl;
  16. @property (nonatomic,copy)NSString *titleStr;
  17. - (void)pushEffectPresentToVC:(UIViewController*)vc;
  18. - (void)popEffectDismiss;
  19. - (void)popEffectDismissWithIndex:(NSInteger)index;
  20. @end