| 12345678910111213141516171819202122232425262728293031 |
- //
- // YRMsgMainCell.m
- // UU_Ent
- //
- // Created by liujl on 2019/4/29.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #import "YRMsgMainCell.h"
- @implementation YRMsgMainCell
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(nullable NSString *)reuseIdentifier{
-
- if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
-
- [self setUpUI];
-
- }
-
- return self;
- }
- -(void)setUpUI{
-
-
-
- }
- @end
|