ContractListCell.m 464 B

123456789101112131415161718192021222324
  1. //
  2. // ContractListCell.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/24.
  6. //
  7. #import "ContractListCell.h"
  8. @implementation ContractListCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. // Initialization code
  12. self.selectionStyle = UITableViewCellSelectionStyleNone;
  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