LogCommentTableViewCell.h 884 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // LogCommentTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/2.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "LogCommentVC.h"
  10. #import "LogShareAndCommentInfoModel.h"
  11. #import "NSString+Tools.h"
  12. #define kTextFont [UIFont systemFontOfSize:14]
  13. @interface LogCommentTableViewCell : UITableViewCell
  14. @property (strong, nonatomic) UIButton *btnSelect;
  15. @property (strong, nonatomic) UILabel *lblUserCode;
  16. @property (strong, nonatomic) UILabel *lblUserName;
  17. @property (strong, nonatomic) UILabel *lblOrg;
  18. @property (strong, nonatomic) UIView *separatorView;
  19. //隐藏
  20. @property(assign) NSString *userId; //ID
  21. @property(nonatomic) BOOL isSelect;
  22. @property(nonatomic) NSInteger cellIndex;
  23. - (CGFloat)height;
  24. @property(weak) id<LogCommentDelegate> delegate;
  25. -(void)parseInfoModel:(LogShareAndCommentInfoModel*)model;
  26. @end