LogCell.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // LogRichText.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 15/11/12.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "Log.h"
  10. #import "LogFrame.h"
  11. #import "ReplyInfo.h"
  12. #import "ImageLoadProgressView.h"
  13. @protocol XHAlbumTableViewCellDelegate <NSObject>
  14. @optional
  15. - (void)didShowOperationView:(UIButton *)sender indexPath:(NSIndexPath *)indexPath logFrame:(LogFrame *)logFrame tag:(NSInteger) tag replyInfo :(ReplyInfo*)replyInfo;
  16. @end
  17. @interface LogCell :UITableViewCell
  18. @property (strong, nonatomic) UIImageView *headerImgView;//头像图片
  19. @property (strong, nonatomic) UILabel *userNameLabel;//用户名控件
  20. @property (strong, nonatomic) NSString *commentUserCode;//评论者用户编码
  21. @property (strong, nonatomic) UILabel *recordStatusLabel;//评论状态控件
  22. @property (strong, nonatomic) UILabel *createTimeLabel;//创建日期控件
  23. @property (strong, nonatomic) UILabel *contentLabel;//日志内容
  24. @property (nonatomic, strong) LogFrame *currentLog;//日志frame布局
  25. @property (strong,nonatomic) UILabel *checkerLabel;//评论者
  26. @property (strong,nonatomic) UIView *commentContentView;//评论视图
  27. @property (strong,nonatomic) UILabel *commentContent;//评论内容
  28. @property (strong,nonatomic) UILabel *commentTime;//评论时间
  29. @property (strong, nonatomic) UIImageView *locationImgView;//当前位置图片
  30. @property (strong, nonatomic) UILabel *locationLabel;//当前位置
  31. @property (strong, nonatomic) UIButton *answerImgView;//回复点击图片
  32. @property (strong, nonatomic) UIButton *answerLabel;//回复点击文本
  33. @property (strong, nonatomic) UIButton *commentImgView;//评论点击图片
  34. @property (strong, nonatomic) UIButton *commentLabel;//评论点击文本
  35. @property (nonatomic,weak) id <XHAlbumTableViewCellDelegate> delegate;//语音tableview委托
  36. @property (nonatomic, strong) NSIndexPath *indexPath;//当前索引位置
  37. @property (nonatomic,strong) NSString *recordStatus;//评论状态
  38. @property (strong,nonatomic) UIView *separatorsView;//分隔线
  39. @property (strong,nonatomic) ImageLoadProgressView *hud;//图片下载进度条
  40. @end