12345678910111213141516171819 |
- //
- // RQVideoDetailSubPageSectionHeaderView.h
- // JSJP
- //
- // Created by 张嵘 on 2021/11/5.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVideoDetailSubPageSectionHeaderView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *headerBtn;
- @property (weak, nonatomic) IBOutlet UILabel *headerSubTitleLabel;
- /// init
- + (instancetype)videoDetailSubPageSectionHeaderView;
- @end
- NS_ASSUME_NONNULL_END
|