YRMsgMainCell.m 490 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YRMsgMainCell.m
  3. // UU_Ent
  4. //
  5. // Created by liujl on 2019/4/29.
  6. // Copyright © 2019 UAS. All rights reserved.
  7. //
  8. #import "YRMsgMainCell.h"
  9. @implementation YRMsgMainCell
  10. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(nullable NSString *)reuseIdentifier{
  11. if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
  12. [self setUpUI];
  13. }
  14. return self;
  15. }
  16. -(void)setUpUI{
  17. }
  18. @end