OtherChangeView.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // OtherChangeView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/3/15.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RechargeWayView.h"
  10. #import "AccountRechargeModel.h"
  11. @class OtherChangeView;
  12. @protocol OtherChangeViewDelegate <NSObject>
  13. - (void)clickOtherRechergeWithView:(OtherChangeView *)otherView;
  14. - (void)clickExchangeWithView:(OtherChangeView *)otherView;
  15. @end
  16. @interface OtherChangeView : BGBaseView
  17. @property (nonatomic, weak) id<OtherChangeViewDelegate> delegate;
  18. @property (nonatomic, strong) UIButton *rechargeBtn; //充值按钮
  19. @property (nonatomic, strong) UIButton *exchangeBtn; //兑换按钮
  20. @property (nonatomic, strong) UIButton *closeBtn; //关闭按钮
  21. @property (nonatomic, strong) UIView *lineView; //充值与兑换之间的分割线
  22. @property (nonatomic, strong) RechargeWayView *rechargeWayView;
  23. @property (nonatomic, strong) NSArray *otherPayArr;
  24. @property (nonatomic, assign) NSInteger selectIndex;
  25. @property (nonatomic, strong) AccountRechargeModel *model;
  26. @property (nonatomic, strong) UILabel *rateLabel;//兑换比例
  27. @property (nonatomic, strong) UITextField *textField;
  28. @property (nonatomic, strong) UILabel *diamondsLabel;
  29. @property (nonatomic, strong) UIButton *cancaleBtn; //取消按钮
  30. @property (nonatomic, strong) UIButton *makeSureBtn; //确定按钮
  31. @property (nonatomic, strong) UIView *separeLineView;
  32. @property (nonatomic, strong) UIView *verticalLineView;
  33. @property (nonatomic, strong) UIView *selectLineView; //选中的分割线
  34. @property (nonatomic, strong) UIView *separateView;
  35. - (instancetype)initWithFrame:(CGRect)frame andUIViewController:(UIViewController *)viewController;
  36. - (void)disChangeText;
  37. @end