LogShareTableViewCell.h 907 B

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