You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
// |
|
// OCBarrageTextCell.h |
|
// TestApp |
|
// |
|
// Created by QMTV on 2017/8/23. |
|
// Copyright © 2017年 LFC. All rights reserved. |
|
// |
|
|
|
#import "OCBarrageCell.h" |
|
#import "OCBarrageTextDescriptor.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface OCBarrageTextCell : OCBarrageCell |
|
|
|
@property (nonatomic, strong) UILabel *textLabel; |
|
@property (nonatomic, strong, nullable) OCBarrageTextDescriptor *textDescriptor; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|