1234567891011121314151617181920 |
- //
- // VipLessonTableHeaderView.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/6/26.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface VipLessonTableHeaderView : UIView
- @property (weak, nonatomic) IBOutlet UIView *notVipView;
- @property (weak, nonatomic) IBOutlet UIView *haveVipView;
- @property (weak, nonatomic) IBOutlet UIImageView *subjectImageView;
- @property (weak, nonatomic) IBOutlet UIButton *signUpBtn;
- @end
- NS_ASSUME_NONNULL_END
|