WZSendInfoCell.m 890 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // WZSendInfoCell.m
  3. // smartRhino
  4. //
  5. // Created by taidi on 2020/1/1.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "WZSendInfoCell.h"
  9. @implementation WZSendInfoCell
  10. + (WZSendInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  11. static NSString *cellIdentifer = @"WZSendInfoCell";
  12. WZSendInfoCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  13. if (cell == nil || !cell) {
  14. cell = [[[NSBundle mainBundle] loadNibNamed:@"WZSendInfoCell" owner:nil options:nil] objectAtIndex:0];
  15. }
  16. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  17. [cell.selectbuton setCurrentButtonHotSize:CGSizeZero];
  18. return cell;
  19. }
  20. - (void)awakeFromNib {
  21. [super awakeFromNib];
  22. }
  23. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  24. [super setSelected:selected animated:animated];
  25. }
  26. @end