| 12345678910111213141516171819202122232425262728 |
- //
- // replyInfoCell.h
- // IBOSS
- //
- // Created by guan hong hou on 15/11/16.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ReplyInfo.h"
- #import "LogFrame.h"
- #import "LogCell.h"
- #import "ReplyFrame.h"
- @protocol TableViewCellDelegate <NSObject>
- @optional
- - (void)ShowOperationView:(UIButton *)sender replyInfo :(ReplyInfo*)replyInfo;
- @end
- @interface ReplyInfoCell : UITableViewCell
- @property (strong, nonatomic) UIButton *replyUserNameLabel;//回复者用户名
- @property (strong, nonatomic) UILabel *replyAtUserNameLabel;//回复@用户名
- @property (strong, nonatomic) UILabel *replyContentLabel;//回复内容
- @property (nonatomic, strong) ReplyInfo *replyInfo;//回复信息对象
- @property (nonatomic, weak) id <TableViewCellDelegate> delegate;//回复委托
- - (void)setReplyInfoData: (ReplyFrame *)replyInfo;//设置回复信息数据
- @end
|