CellForWorkGroupRepost.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CellForWorkGroupRepost.h
  3. // HKPTimeLine 仿赤兔、微博动态
  4. // CSDN: http://blog.csdn.net/samuelandkevin
  5. // Created by samuelandkevin on 16/9/20.
  6. // Copyright © 2016年 HKP. All rights reserved.
  7. // 转发视图
  8. #import <UIKit/UIKit.h>
  9. #import "YHWorkGroup.h"
  10. #import "HKPBotView.h"
  11. @class CellForWorkGroupRepost;
  12. @protocol CellForWorkGroupRepostDelegate <NSObject>
  13. - (void)onAvatarInRepostCell:(CellForWorkGroupRepost *)cell;
  14. - (void)onTapRepostViewInCell:(CellForWorkGroupRepost *)cell;
  15. - (void)onCommentInRepostCell:(CellForWorkGroupRepost *)cell;
  16. - (void)onLikeInRepostCell:(CellForWorkGroupRepost *)cell;
  17. - (void)onShareInRepostCell:(CellForWorkGroupRepost *)cell;
  18. - (void)onDeleteInRepostCell:(CellForWorkGroupRepost *)cell;
  19. - (void)onMoreInRespostCell:(CellForWorkGroupRepost *)cell;
  20. @end
  21. @interface CellForWorkGroupRepost : UITableViewCell
  22. @property (nonatomic) NSIndexPath *indexPath;
  23. @property (weak,nonatomic) id<CellForWorkGroupRepostDelegate>delegate;
  24. @property (nonatomic,strong) YHWorkGroup *model;
  25. @property (nonatomic,strong) HKPBotView *viewBottom;
  26. @end