12345678910111213141516171819202122232425262728 |
- //
- // TabBarVC.h
- // jiaPei
- //
- // Created by apple on 15/11/26.
- // Copyright (c) 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TabBarVC : UITabBarController
- @property(nonatomic,assign)BOOL hideBar;
- @property(assign,readonly)CGFloat barHeight;
- @property (nonatomic, retain) NSArray *btnArray;
- @property (nonatomic, retain) STButton* currentBtn;
- /**把tabbar添加到sideVC里面去。
- */
- @property (strong, nonatomic) YRSideViewController* sideVC;
- @end
|