| 12345678910111213141516171819202122 |
- //
- // YBLiveChatCell.h
- // YBVideo
- //
- // Created by YB007 on 2019/12/3.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YBLiveChatModel.h"
- @interface YBLiveChatCell : UITableViewCell
- @property(nonatomic,strong)YBLiveChatModel *model;
- @property (weak, nonatomic) IBOutlet UILabel *chatLabel;
- @property (weak, nonatomic) IBOutlet UIView *chatView;
- @end
|