YBDestroyCell.h 548 B

123456789101112131415161718192021222324252627
  1. //
  2. // YBDestroyCell.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2020/6/22.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBDestroyCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  12. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  13. @property (weak, nonatomic) IBOutlet UIButton *stateBtn;
  14. @property(nonatomic,strong)NSDictionary *dataDic;
  15. +(YBDestroyCell *)cellWithTab:(UITableView *)table index:(NSIndexPath *)index;
  16. @end
  17. NS_ASSUME_NONNULL_END