RightTableCell.m 487 B

12345678910111213141516171819202122232425
  1. //
  2. // RightTableCell.m
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/24.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import "RightTableCell.h"
  9. @implementation RightTableCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  15. [super setSelected:selected animated:animated];
  16. // Configure the view for the selected state
  17. }
  18. @end