OrganizTableViewCell.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // OrganizTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/5/12.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DepartObject.h"
  10. @interface OrganizTableViewCell : UITableViewCell
  11. @property (strong, nonatomic) UIImageView * arrowView;
  12. @property (nonatomic) BOOL arrowExpand;
  13. //@property (strong, nonatomic) UILabel *detailLabel;
  14. @property (strong, nonatomic) UILabel *nameLabel;
  15. @property (strong, nonatomic) UIButton *additionButton;
  16. @property (nonatomic, strong) UILabel *noticeLab;
  17. @property (strong, nonatomic) DepartObject *organizObject;
  18. @property (nonatomic, copy) void (^additionButtonTapAction)(id sender);
  19. @property (nonatomic, copy) void (^noticeLabTapAction)(DepartObject *dataObj);
  20. //@property (nonatomic) BOOL additionButtonHidden;
  21. - (void)setupWithData:(DepartObject *)dataObj level:(NSInteger)level expand:(BOOL)expand;
  22. //- (void)setArrowExpand:(BOOL)arrowExpand animated:(BOOL)animated;
  23. //- (void)setAdditionButtonHidden:(BOOL)additionButtonHidden animated:(BOOL)animated;
  24. @end