ConverDiamondsViewController.h 1016 B

12345678910111213141516171819202122232425
  1. //
  2. // ConverDiamondsViewController.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ConverDiamondsViewController : BGBaseViewController
  10. @property (weak, nonatomic) IBOutlet UIView *backView;
  11. @property (weak, nonatomic) IBOutlet UILabel *diamondsLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *acountLabel;
  13. @property (weak, nonatomic) IBOutlet UIView *textFieldView;
  14. @property (weak, nonatomic) IBOutlet UITextField *rightTextField;
  15. @property (weak, nonatomic) IBOutlet UITextField *leftTextfield;
  16. @property (weak, nonatomic) IBOutlet UIButton *cancelButton;
  17. @property (weak, nonatomic) IBOutlet UIButton *converButton;
  18. @property (weak, nonatomic) IBOutlet UILabel *exchangeRate_Lab; // 兑换比例lab
  19. @property (nonatomic, assign) BOOL whetherGame; // 是否游戏兑换
  20. @property (nonatomic, strong) NSString *tickte;
  21. @end