12345678910111213141516171819202122 |
- //
- // HCCommunityCell.h
- // hc
- //
- // Created by hc on 2018/5/16.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HCCommunityModel.h"
- #import "PhotoContainerView.h"
- @protocol YHCommunityDelegate<NSObject>
- @optional
- -(void)oneTouchShareWithModel:(HCCommunityModel *)model;
- @end
- @interface HCCommunityCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) HCCommunityModel *model;
- @property (nonatomic, weak ) id<YHCommunityDelegate> delegate;
- @property (nonatomic, strong) PhotoContainerView *picContainerView;
- @end
|