12345678910111213141516171819202122232425262728293031 |
- //
- // YOUPAILCSkillView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/13.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCSkillModel.h"
- @class NobleSaleBtn;
- @interface YOUPAILCSkillView : UIView
- @property(nonatomic,strong)UIButton* youpaippriceBtn;
- @property(nonatomic,strong)NobleSaleBtn* youpaipnobleSaleBtn;//贵族优惠
- - (instancetype)initWithFrame:(CGRect)frame skillModel:(YOUPAILCSkillModel*)model;
- - (void)showSetPrice;
- @end
- @interface NobleSaleBtn : UIButton
- - (instancetype)initWithFrame:(CGRect)frame;
- @property(nonatomic,strong)UILabel* youpaipbtnL;
- @property(nonatomic,strong)UIImageView* youpaipiconimgV;
- @end
|