HomeSchoolHeadView.h 874 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // HomeSchoolHeadView.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/9/19.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeSchoolHeadView : UIView
  12. @property (nonatomic, strong) UIImageView * imagV;
  13. @property (nonatomic, strong) UIView * showView;
  14. @property (nonatomic, strong) UIImageView * iconV;
  15. @property (nonatomic, strong) UILabel * titleL;
  16. @property (nonatomic, strong) UILabel * subTitleL;
  17. @property (nonatomic, strong) UILabel * addressL;
  18. @property (nonatomic, strong) UILabel * numL;
  19. @property (nonatomic, strong) UILabel * typeL;
  20. @property (nonatomic, strong) UIButton * collectBtn;
  21. @property (nonatomic, strong) UIButton * playBtn;
  22. - (void)setDataWithModel:(HomeSubItemModel *)model;
  23. @end
  24. NS_ASSUME_NONNULL_END