PokerDownView.h 1.0 KB

12345678910111213141516171819202122232425
  1. //
  2. // PokerDownView.h
  3. // GoldenFlowerDemo
  4. //
  5. // Created by GuoMs on 16/11/17.
  6. // Copyright © 2016年 zcd. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "THLabel.h"
  10. @interface PokerDownView : UIView
  11. @property (strong, nonatomic) IBOutlet UILabel *betMultiple;//押注倍数
  12. @property (strong, nonatomic) IBOutlet UIImageView *plantIMG;//星球的图片分为左右中
  13. //@property (strong, nonatomic) IBOutlet UILabel *amountBetLable;//直播间押注数额
  14. //@property (strong, nonatomic) IBOutlet UILabel *amountBetLable;//直播间押注数额
  15. @property (strong, nonatomic) IBOutlet UILabel *betPersonLable;//个人押注数额
  16. @property (strong, nonatomic) IBOutlet UIImageView *lotPokerIMG;//存放游戏即将开始一摞牌图片
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *plantImgWidth;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *plantImgHeight;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *betPersonLableHeight;
  20. @property (weak, nonatomic) IBOutlet THLabel *amountBetLable;
  21. @end