SocietyHeaderView.h 977 B

1234567891011121314151617181920212223242526
  1. //
  2. // TianTuanHeaderView.h
  3. // BuguLive
  4. //
  5. // Created by 杨仁伟 on 2017/8/8.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SocietyHeaderView : UICollectionReusableView
  10. @property (weak, nonatomic) IBOutlet UIButton *societyBgBtn;
  11. @property (weak, nonatomic) IBOutlet UILabel *societyNameLbl;
  12. @property (weak, nonatomic) IBOutlet UILabel *presidentLbl;
  13. @property (weak, nonatomic) IBOutlet UILabel *declarationLbl;
  14. @property (weak, nonatomic) IBOutlet UIButton *OperationBtn;
  15. @property (weak, nonatomic) IBOutlet UIButton *moreBtn;
  16. @property (weak, nonatomic) IBOutlet UIView *underView;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *operationBtnW;
  18. @property (weak, nonatomic) IBOutlet UILabel *societyTotalLbl;
  19. @property (weak, nonatomic) IBOutlet UIImageView *tblHeadImg;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *headTopH;
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *headBottomH;
  22. @end