JXTabButton.h 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // JXTabButton.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-5-17.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXBadgeView;
  10. @class FLAnimatedImageView;
  11. @interface JXTabButton : UIButton{
  12. FLAnimatedImageView* _icon;
  13. UILabel* _lbTitle;
  14. }
  15. @property (nonatomic, strong) NSString *iconName;
  16. @property (nonatomic, strong) NSString *selectedIconName;
  17. @property (nonatomic, strong) NSString *backgroundImageName;
  18. @property (nonatomic, strong) NSString *selectedBackgroundImageName;
  19. @property (nonatomic, strong) NSString *text;
  20. @property (nonatomic, strong) UIColor *textColor;
  21. @property (nonatomic, strong) UIColor *selectedTextColor;
  22. @property (nonatomic, strong) NSString *bage;
  23. @property (nonatomic, assign) BOOL isTabMenu;
  24. @property (nonatomic, assign) SEL onDragout;
  25. @property (nonatomic, weak) NSObject* delegate;
  26. @property (nonatomic, strong) JXBadgeView *lbBage;
  27. - (void)show;
  28. @end