YOUPAILCSkillView.h 692 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YOUPAILCSkillView.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/13.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCSkillModel.h"
  10. @class NobleSaleBtn;
  11. @interface YOUPAILCSkillView : UIView
  12. @property(nonatomic,strong)UIButton* youpaippriceBtn;
  13. @property(nonatomic,strong)NobleSaleBtn* youpaipnobleSaleBtn;//贵族优惠
  14. - (instancetype)initWithFrame:(CGRect)frame skillModel:(YOUPAILCSkillModel*)model;
  15. - (void)showSetPrice;
  16. @end
  17. @interface NobleSaleBtn : UIButton
  18. - (instancetype)initWithFrame:(CGRect)frame;
  19. @property(nonatomic,strong)UILabel* youpaipbtnL;
  20. @property(nonatomic,strong)UIImageView* youpaipiconimgV;
  21. @end