1234567891011121314151617181920212223 |
- //
- // KSChatListCell.m
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/5/17.
- //
- #import "KSChatListCell.h"
- @implementation KSChatListCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|