| 123456789101112131415161718192021222324252627 |
- //
- // CTTabbarController.h
- // wct_tabbar
- //
- // Created by Wcting on 2019/4/24.
- // Copyright © 2019年 EJIAJX_wct. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ViewController.h"
- #import "NewHomeViewController.h"
- #import "MineViewController.h"
- #import "SearchViewController.h"
- #import "JXShortDramaViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CTTabbarController : UITabBarController
- @property (nonatomic) NSUInteger selectedButtonIndex;
- @property (nonatomic, strong)NewHomeViewController *vc1; // 新版首页
- @property (nonatomic, strong)JXShortDramaViewController *vc2; // 短剧页面
- @property (nonatomic, strong)SearchViewController *vc3; // 搜索(暂时注释)
- @property (nonatomic, strong)MineViewController *vc4; // 我的
- +(CTTabbarController *)sharaTabbarController;
- @end
- NS_ASSUME_NONNULL_END
|