| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // LogRichText.h
- // IBOSS
- //
- // Created by guan hong hou on 15/11/12.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "Log.h"
- #import "LogFrame.h"
- #import "ReplyInfo.h"
- #import "ImageLoadProgressView.h"
- @protocol XHAlbumTableViewCellDelegate <NSObject>
- @optional
- - (void)didShowOperationView:(UIButton *)sender indexPath:(NSIndexPath *)indexPath logFrame:(LogFrame *)logFrame tag:(NSInteger) tag replyInfo :(ReplyInfo*)replyInfo;
- @end
- @interface LogCell :UITableViewCell
- @property (strong, nonatomic) UIImageView *headerImgView;//头像图片
- @property (strong, nonatomic) UILabel *userNameLabel;//用户名控件
- @property (strong, nonatomic) NSString *commentUserCode;//评论者用户编码
- @property (strong, nonatomic) UILabel *recordStatusLabel;//评论状态控件
- @property (strong, nonatomic) UILabel *createTimeLabel;//创建日期控件
- @property (strong, nonatomic) UILabel *contentLabel;//日志内容
- @property (nonatomic, strong) LogFrame *currentLog;//日志frame布局
- @property (strong,nonatomic) UILabel *checkerLabel;//评论者
- @property (strong,nonatomic) UIView *commentContentView;//评论视图
- @property (strong,nonatomic) UILabel *commentContent;//评论内容
- @property (strong,nonatomic) UILabel *commentTime;//评论时间
- @property (strong, nonatomic) UIImageView *locationImgView;//当前位置图片
- @property (strong, nonatomic) UILabel *locationLabel;//当前位置
- @property (strong, nonatomic) UIButton *answerImgView;//回复点击图片
- @property (strong, nonatomic) UIButton *answerLabel;//回复点击文本
- @property (strong, nonatomic) UIButton *commentImgView;//评论点击图片
- @property (strong, nonatomic) UIButton *commentLabel;//评论点击文本
- @property (nonatomic,weak) id <XHAlbumTableViewCellDelegate> delegate;//语音tableview委托
- @property (nonatomic, strong) NSIndexPath *indexPath;//当前索引位置
- @property (nonatomic,strong) NSString *recordStatus;//评论状态
- @property (strong,nonatomic) UIView *separatorsView;//分隔线
- @property (strong,nonatomic) ImageLoadProgressView *hud;//图片下载进度条
- @end
|