TCBGMCell.h 470 B

1234567891011121314151617181920
  1. //
  2. // TCBGMCell.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by linkzhzhu on 2017/12/12.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TCCircleProgressView.h"
  10. @interface TCBGMCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *nameView;
  12. @property (weak, nonatomic) IBOutlet TCCircleProgressView *progressView;
  13. @property (weak, nonatomic) IBOutlet UIImageView *validView;
  14. -(void) setFinish:(BOOL) finish;
  15. @end