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