YBVipHeader.h 827 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YBVipHeader.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/20.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^YBVipHeaderBlock)(NSString *eventStr);
  10. @interface YBVipHeader : UIView
  11. @property(nonatomic,copy)YBVipHeaderBlock vipEvent;
  12. @property (weak, nonatomic) IBOutlet UIView *topView;
  13. @property (weak, nonatomic) IBOutlet UIView *botView;
  14. @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
  15. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  16. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  17. @property (weak, nonatomic) IBOutlet UIButton *buyVipBtn;
  18. @property (weak, nonatomic) IBOutlet UIView *botTitleView;
  19. @property (weak, nonatomic) IBOutlet UILabel *topDesL;
  20. @property (weak, nonatomic) IBOutlet UILabel *botTitleL;
  21. -(void)setSubView;
  22. @end