单军华
2017-07-12 20d1260d26b028897f3c0935c12fc35aa37b2e93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
//  HBdansLable.h
//  弹幕
//
//  Created by 伍宏彬 on 15/10/14.
//  Copyright (c) 2015年 伍宏彬. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "UIView+WHB.h"
 
@class HBdansLable;
 
@protocol HBdansLableDelegate <NSObject>
 
/**判断是否滚出屏幕外面,并回准备回收实例**/
- (void)dansLable:(HBdansLable *)dansLable isOutScreen:(BOOL)isOutScreen;
 
@end
 
@interface HBdansLable : UILabel
 
+ (instancetype)dansLableFrame:(CGRect)frame;
 
 
@property (nonatomic, weak) id<HBdansLableDelegate>  delegate;
 
@property (nonatomic, assign) CGFloat roundVaule;
/**
 *  边线宽
 */
@property (nonatomic, assign) CGFloat lineWidth;
/**
 *  边线颜色
 */
@property (nonatomic, copy) UIColor *lineColor;
 
@end