// // BadgeView.h // Join // // Created by silan on 16/9/1. // Copyright © 2016年 Join. All rights reserved. // #import IB_DESIGNABLE @interface BadgeView : UIView @property (nonatomic, strong) IBInspectable UIColor *bgColor; @property (nonatomic, strong) IBInspectable NSString *badgeValue; @property (nonatomic, strong) IBInspectable UIColor *textColor; @property (nonatomic, strong) IBInspectable UIFont *textFont; @end /* BadgeView *badgeView = [[BadgeView alloc] initWithFrame:CGRectMake(100, 100, 0, 0)]; badgeView.badgeValue = @"111"; badgeView.textColor = [UIColor blackColor]; badgeView.textFont = [UIFont systemFontOfSize:14]; badgeView.bgColor = [UIColor redColor]; [badgeView sizeToFit]; [self.view addSubview:badgeView]; */