TCBGMCell.m 592 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TCBGMCell.m
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by linkzhzhu on 2017/12/12.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import "TCBGMCell.h"
  9. @implementation TCBGMCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. [_validView setImage:[UIImage imageNamed:@"confirm_hover"]];
  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. -(void) setFinish:(BOOL) finish{
  19. [_progressView setVisible:!finish];
  20. [_validView setVisible:finish];
  21. }
  22. @end