12345678910111213141516171819202122232425 |
- //
- // ZCBaseVC.h
- // HuaKaiChat
- //
- // Created by 张灿 on 2017/6/27.
- // Copyright © 2017年 huakai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //#import "RTRootNavigationController.h"
- typedef void(^SwipeHideNav)(void);
- typedef void(^SwipeShowNav)(void);
- @interface ZCBaseVC : UIViewController
- @property (nonatomic,copy)SwipeHideNav hideNav;
- @property (nonatomic,copy)SwipeShowNav showNav;
- @property (nonatomic,copy)NSString *contentUrl;
- @property (nonatomic,copy)NSString *titleStr;
- - (void)pushEffectPresentToVC:(UIViewController*)vc;
- - (void)popEffectDismiss;
- - (void)popEffectDismissWithIndex:(NSInteger)index;
- @end
|