TabBarVC.h 493 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TabBarVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/26.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TabBarVC : UITabBarController
  10. @property(nonatomic,assign)BOOL hideBar;
  11. @property(assign,readonly)CGFloat barHeight;
  12. @property (nonatomic, retain) NSArray *btnArray;
  13. @property (nonatomic, retain) STButton* currentBtn;
  14. /**把tabbar添加到sideVC里面去。
  15. */
  16. @property (strong, nonatomic) YRSideViewController* sideVC;
  17. @end