// // HomeSchoolHeadView.h // smartRhino // // Created by niuzhen on 2020/9/19. // Copyright © 2020 tederen. All rights reserved. // #import #import "HomeSubItemModel.h" NS_ASSUME_NONNULL_BEGIN @interface HomeSchoolHeadView : UIView @property (nonatomic, strong) UIImageView * imagV; @property (nonatomic, strong) UIView * showView; @property (nonatomic, strong) UIImageView * iconV; @property (nonatomic, strong) UILabel * titleL; @property (nonatomic, strong) UILabel * subTitleL; @property (nonatomic, strong) UILabel * addressL; @property (nonatomic, strong) UILabel * numL; @property (nonatomic, strong) UILabel * typeL; @property (nonatomic, strong) UIButton * collectBtn; @property (nonatomic, strong) UIButton * playBtn; - (void)setDataWithModel:(HomeSubItemModel *)model; @end NS_ASSUME_NONNULL_END