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