TexasPokerLeftAndRight.h 938 B

12345678910111213141516171819202122
  1. //
  2. // TexasPokerLeftAndRight.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/12/12.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PlayingCardView.h"
  10. @interface TexasPokerLeftAndRight : UIView
  11. @property (strong, nonatomic) IBOutlet UIImageView *texasLeftAndRightOne;//第一张牌
  12. @property (strong, nonatomic) IBOutlet UIImageView *texasLeftAndRightTwo;//第二张牌
  13. @property (strong, nonatomic) IBOutlet UIImageView *pokerResultView;//显示本副牌的结果
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *pokerTwoLeftLeading;
  15. @property (nonatomic, assign) CGFloat height;//视图的高度
  16. @property (nonatomic, assign) CGFloat pokWidth;//扑克牌的宽度
  17. @property (nonatomic, assign) CGFloat pokHeight;//扑克牌的高度
  18. @property (nonatomic, strong) PlayingCardView *playingCardView;//单张扑克牌视图
  19. - (void)hidenTexasPoker:(BOOL)hiden;///隐藏两张扑克牌
  20. @end