| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // UITabBarItem+WZLBadge.h
- // WZLBadgeDemo
- //
- // Created by zilin_weng on 15/9/24.
- // Copyright (c) 2015年 Weng-Zilin. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UIView+WZLBadge.h"
- #import "WZLBadgeProtocol.h"
- @interface UITabBarItem (WZLBadge)<WZLBadgeProtocol>
- @property (nonatomic, strong) UILabel *badge; /* badge entity, which is adviced not to set manually */
- @property (nonatomic, strong) UIColor *badgeBgColor; /* red color by default if not set */
- @property (nonatomic, strong) UIColor *badgeTextColor; /* white color by default if not set */
- @property (nonatomic, assign) CGRect badgeFrame; /* we have optimized the badge frame and center.
- This property is adviced not to set manually */
- @property (nonatomic, assign) CGPoint badgeCenterOffset;/* offset from right-top corner. {0,0} by default */
- /* For x, negative number means left offset
- For y, negative number means bottom offset
- */
- @property (nonatomic, assign) WBadgeAnimType aniType; /* NOTE that this is not animation type of badge's
- appearing, nor hidding*/
- @property (nonatomic, assign) NSInteger badgeMaximumBadgeNumber; /*for WBadgeStyleNumber style badge,
- if badge value is above badgeMaximumBadgeNumber,
- "badgeMaximumBadgeNumber+" will be printed. */
- /**
- * show badge with red dot style and WBadgeAnimTypeNone by default.
- */
- - (void)showBadge;
- /**
- * showBadge
- *
- * @param style WBadgeStyle type
- * @param value (if 'style' is WBadgeStyleRedDot or WBadgeStyleNew,
- this value will be ignored. In this case, any value will be ok.)
- * @param aniType
- */
- - (void)showBadgeWithStyle:(WBadgeStyle)style
- value:(NSInteger)value
- animationType:(WBadgeAnimType)aniType;
- /**
- * clear badge(hide badge)
- */
- - (void)clearBadge;
- /**
- * make bage(if existing) not hiden
- */
- - (void)resumeBadge;
- @end
|