// // LogCommentTableViewCell.h // IBOSS // // Created by Dongke on 15/11/2. // Copyright © 2015年 elongtian. All rights reserved. // #import #import "LogCommentVC.h" #import "LogShareAndCommentInfoModel.h" #import "NSString+Tools.h" #define kTextFont [UIFont systemFontOfSize:14] @interface LogCommentTableViewCell : UITableViewCell @property (strong, nonatomic) UIButton *btnSelect; @property (strong, nonatomic) UILabel *lblUserCode; @property (strong, nonatomic) UILabel *lblUserName; @property (strong, nonatomic) UILabel *lblOrg; @property (strong, nonatomic) UIView *separatorView; //隐藏 @property(assign) NSString *userId; //ID @property(nonatomic) BOOL isSelect; @property(nonatomic) NSInteger cellIndex; - (CGFloat)height; @property(weak) id delegate; -(void)parseInfoModel:(LogShareAndCommentInfoModel*)model; @end