| 123456789101112131415161718192021222324252627282930 |
- //
- // LogShareTableViewCell.h
- // IBOSS
- //
- // Created by Dongke on 15/11/4.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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<LogShareDelegate> delegate;
- - (void) setCheckBackground: (BOOL) checked;
- -(void)parseInfoModel:(LogShareAndCommentInfoModel*)model;
- - (CGFloat)height;
- @end
|