KSChatListCell.m 399 B

1234567891011121314151617181920212223
  1. //
  2. // KSChatListCell.m
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/5/17.
  6. //
  7. #import "KSChatListCell.h"
  8. @implementation KSChatListCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. // Initialization code
  12. }
  13. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  14. [super setSelected:selected animated:animated];
  15. // Configure the view for the selected state
  16. }
  17. @end