123456789101112131415161718192021222324 |
- //
- // HSQCommunityCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HSQCommunityModel.h"
- #import "PhotoContainerView.h"
- #import "HSQCommunityDetailModel.h"
- @protocol YHCommunityDelegate<NSObject>
- @optional
- -(void)oneTouchShareWithModel:(HSQCommunityDetailModel *)model;
- @end
- @interface HSQCommunityCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, copy) void (^shareClick)(void);
- @property (nonatomic, strong) HSQCommunityDetailModel *model;
- @property (nonatomic, weak ) id<YHCommunityDelegate> delegate;
- @property (nonatomic, strong) PhotoContainerView *picContainerView;
- @end
|