JXSheBeiCell.h 472 B

123456789101112131415161718192021
  1. //
  2. // JXSheBeiCell.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/26.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXMyModel.h"
  10. typedef void(^SheBlockBtn)(UIButton *sender);
  11. @interface JXSheBeiCell : UITableViewCell
  12. @property (nonatomic,strong) shebeiModel *Model;
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @property (nonatomic,weak) UIButton *rightIMG;
  15. @property (nonatomic,copy) SheBlockBtn block;
  16. @end