// // NIMBadgeView.h // NIMKit // // Created by chris on 15/2/12. // Copyright (c) 2015年 Netease. All rights reserved. // #import @interface NIMBadgeView : UIView @property (strong) UIColor *badgeBackgroundColor; @property (nonatomic, copy) NSString *badgeValue; @property (strong) UIColor *badgeTextColor; @property (nonatomic) UIFont *badgeTextFont; @property (strong) UIColor *CirclegroundColor; + (instancetype)viewWithBadgeTip:(NSString *)badgeValue; @end