1234567891011121314151617181920 |
- //
- // YOUPAILCRelationCell.h
- // LiveChat
- //
- // Created by 张灿 on 2018/8/31.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCRelationModel.h"
- typedef void(^cancelBlackListBlock)(void);
- typedef void(^DidIconBlock) (YOUPAILCRelationModel*model);
- @interface YOUPAILCRelationCell : UITableViewCell
- @property(nonatomic,copy)cancelBlackListBlock youpaipcancelBlack;
- @property(nonatomic,strong)NSString* youpaiprelationType; //youpaiffollow fans seen visit blacklist
- @property(nonatomic,strong)YOUPAILCRelationModel* youpaiprelationModel;
- /* 点击头像回调 */
- @property (copy, nonatomic) DidIconBlock youpaipdidIconBlock;
- @end
|