12345678910111213141516171819202122 |
- //
- // BaseSlideViewController.h
- // SlideViewController
- //
- // Created by 周智勇 on 17/2/27.
- // Copyright © 2017年 周智勇. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BaseSlideViewController : ZBBaseViewController
- /** 标签文字数组*/
- @property (nonatomic ,strong) NSArray * titlesArr;
- @property(nonatomic,copy)void (^changeIndex)(NSInteger index);
- -(void)addChildViewController;
- - (void)updateSuperTitleAry;
- -(void)setUpCurrentChildController:(NSInteger)index;
- @end
|