1234567891011121314151617181920 |
- //
- // RQCommonCell.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RQReactiveViewProtocol.h"
- @interface RQCommonCell : UITableViewCell <RQReactiveViewProtocol>
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- + (instancetype)cellWithTableView:(UITableView *)tableView style:(UITableViewCellStyle)style;
- - (void)setIndexPath:(NSIndexPath *)indexPath rowsInSection:(NSInteger)rows;
- @end
|