MTBaseTableViewCell.m 635 B

12345678910111213141516171819202122232425
  1. //
  2. // MTBaseTableViewCell.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseTableViewCell.h"
  8. @implementation MTBaseTableViewCell
  9. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
  10. if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]){
  11. self.selectionStyle = UITableViewCellSelectionStyleNone;
  12. };
  13. return self;
  14. }
  15. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  16. [super setSelected:selected animated:animated];
  17. // Configure the view for the selected state
  18. }
  19. @end