TexasPokerBetween.h 1.4 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // TexasPokerBetween.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/12/14.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TexasPokerBetween : UIView
  10. @property (weak, nonatomic) IBOutlet UIImageView *texasPokerOne;//德州扑克公共牌的第一张牌
  11. @property (weak, nonatomic) IBOutlet UIImageView *texasPokerTwo; //德州扑克公共牌的第二张牌
  12. @property (weak, nonatomic) IBOutlet UIImageView *texasPokerThree; //德州扑克公共牌的第三张牌
  13. @property (weak, nonatomic) IBOutlet UIImageView *texasPokerFour; //德州扑克公共牌的第四张牌
  14. @property (weak, nonatomic) IBOutlet UIImageView *texasPokerFive; //德州扑克公共牌的第五张牌
  15. @property (weak, nonatomic) IBOutlet UIImageView *pokerResultView;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *texasPokerTwoLeftLeading;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *texasPokerThreeLeftLeading;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *texasPokerFourLeftLeading;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *texasPokerFiveLeftLeading;
  20. @property (nonatomic, strong) PlayingCardView *playingCardView;//单张扑克牌视图
  21. @property (nonatomic, assign) CGFloat height;//视图的高度
  22. @property (nonatomic, assign) CGFloat pokWidth;//扑克牌的宽度
  23. @property (nonatomic, assign) CGFloat pokHeight;//扑克牌的高度
  24. //隐藏所有的牌
  25. - (void)hidenTexasPoker:(BOOL)hiden ;
  26. @end