NIMBadgeView.h 489 B

12345678910111213141516171819202122
  1. //
  2. // NIMBadgeView.h
  3. // NIMKit
  4. //
  5. // Created by chris on 15/2/12.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NIMBadgeView : UIView
  10. @property (strong) UIColor *badgeBackgroundColor;
  11. @property (nonatomic, copy) NSString *badgeValue;
  12. @property (strong) UIColor *badgeTextColor;
  13. @property (nonatomic) UIFont *badgeTextFont;
  14. @property (strong) UIColor *CirclegroundColor;
  15. + (instancetype)viewWithBadgeTip:(NSString *)badgeValue;
  16. @end