dkahgld

BaseSlideViewController.h 501B

12345678910111213141516171819202122
  1. //
  2. // BaseSlideViewController.h
  3. // SlideViewController
  4. //
  5. // Created by 周智勇 on 17/2/27.
  6. // Copyright © 2017年 周智勇. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseSlideViewController : ZBBaseViewController
  10. /** 标签文字数组*/
  11. @property (nonatomic ,strong) NSArray * titlesArr;
  12. @property(nonatomic,copy)void (^changeIndex)(NSInteger index);
  13. -(void)addChildViewController;
  14. - (void)updateSuperTitleAry;
  15. -(void)setUpCurrentChildController:(NSInteger)index;
  16. @end