YOUPAILCRelationCell.h 682 B

1234567891011121314151617181920
  1. //
  2. // YOUPAILCRelationCell.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/8/31.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCRelationModel.h"
  10. typedef void(^cancelBlackListBlock)(void);
  11. typedef void(^DidIconBlock) (YOUPAILCRelationModel*model);
  12. @interface YOUPAILCRelationCell : UITableViewCell
  13. @property(nonatomic,copy)cancelBlackListBlock youpaipcancelBlack;
  14. @property(nonatomic,strong)NSString* youpaiprelationType; //youpaiffollow fans seen visit blacklist
  15. @property(nonatomic,strong)YOUPAILCRelationModel* youpaiprelationModel;
  16. /* 点击头像回调 */
  17. @property (copy, nonatomic) DidIconBlock youpaipdidIconBlock;
  18. @end