JoinOrActivityCell.m 830 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // JoinOrActivityCell.m
  3. // ZhongJingLianMeng
  4. //
  5. // Created by vinDesel on 2018/11/16.
  6. // Copyright © 2018年 youke. All rights reserved.
  7. //
  8. #import "JoinOrActivityCell.h"
  9. @implementation JoinOrActivityCell
  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. + (instancetype)JoinOrActivityCellWithTableView:(UITableView *)tableView
  19. {
  20. static NSString *iden = @"JoinOrActivityCell";
  21. JoinOrActivityCell *cell = [tableView dequeueReusableCellWithIdentifier:iden];
  22. if (!cell) {
  23. cell = [[[NSBundle mainBundle] loadNibNamed:NSStringFromClass(self) owner:nil options:nil] lastObject];
  24. }
  25. return cell;
  26. }
  27. @end