| 1234567891011121314151617181920212223242526272829303132 |
- //
- // LogCommentTableViewCell.h
- // IBOSS
- //
- // Created by Dongke on 15/11/2.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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<LogCommentDelegate> delegate;
- -(void)parseInfoModel:(LogShareAndCommentInfoModel*)model;
- @end
|