1234567891011121314151617 |
- //
- // HSQCommunityRightCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/8/7.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HSQCommunityRightModel.h"
- @interface HSQCommunityRightCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) HSQCommunityRightModel *model;
- @property (nonatomic, copy) void (^shareClick)(void);
- @end
|