22 lines
425 B
Objective-C
Executable File
22 lines
425 B
Objective-C
Executable File
//
|
|
// 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
|