12345678910111213141516171819202122232425262728293031 |
- #import <UIKit/UIKit.h>
- FOUNDATION_EXPORT NSString *const kTabBarClearBadgeNotification;
- @interface TabbarButton : UIButton
- @property (nonatomic, assign) CGFloat maxDistance;
- @property (nonatomic, strong) UIView *samllCircleView;
- @property (nonatomic, strong) NSMutableArray *images;
- @property (nonatomic, strong) NSString *unreadCount;
- @property (nonatomic, strong) UIImage *unreadCountImage;
- @property (nonatomic, strong) CAShapeLayer *shapeLayer;
- @end
|