123456789101112131415161718192021 |
- //
- // JXSheBeiCell.h
- // shiku_im
- //
- // Created by 123 on 2020/5/26.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JXMyModel.h"
- typedef void(^SheBlockBtn)(UIButton *sender);
- @interface JXSheBeiCell : UITableViewCell
- @property (nonatomic,strong) shebeiModel *Model;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic,weak) UIButton *rightIMG;
- @property (nonatomic,copy) SheBlockBtn block;
- @end
-
|