ReplyInfoCell.h 899 B

12345678910111213141516171819202122232425262728
  1. //
  2. // replyInfoCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 15/11/16.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ReplyInfo.h"
  10. #import "LogFrame.h"
  11. #import "LogCell.h"
  12. #import "ReplyFrame.h"
  13. @protocol TableViewCellDelegate <NSObject>
  14. @optional
  15. - (void)ShowOperationView:(UIButton *)sender replyInfo :(ReplyInfo*)replyInfo;
  16. @end
  17. @interface ReplyInfoCell : UITableViewCell
  18. @property (strong, nonatomic) UIButton *replyUserNameLabel;//回复者用户名
  19. @property (strong, nonatomic) UILabel *replyAtUserNameLabel;//回复@用户名
  20. @property (strong, nonatomic) UILabel *replyContentLabel;//回复内容
  21. @property (nonatomic, strong) ReplyInfo *replyInfo;//回复信息对象
  22. @property (nonatomic, weak) id <TableViewCellDelegate> delegate;//回复委托
  23. - (void)setReplyInfoData: (ReplyFrame *)replyInfo;//设置回复信息数据
  24. @end