BullPoker.h 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BullPoker.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/12/2.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PlayingCardView.h"
  10. @interface BullPoker : UIView
  11. @property (weak, nonatomic) IBOutlet UIImageView *BullPokerOne;//斗牛每一副牌的第一张牌
  12. @property (weak, nonatomic) IBOutlet UIImageView *BullPokerTwo;//斗牛每一副牌的第二张牌
  13. @property (weak, nonatomic) IBOutlet UIImageView *BullPokerThree;//斗牛每一副牌的第三张牌
  14. @property (weak, nonatomic) IBOutlet UIImageView *BullPokerFour;//斗牛每一副牌的第四张牌
  15. @property (weak, nonatomic) IBOutlet UIImageView *BullPokerFive;//斗牛每一副牌的第五张牌
  16. @property (strong, nonatomic) IBOutlet UIImageView *pokerResultView;//每副牌的判定结果
  17. @property (nonatomic, strong) PlayingCardView *playingCardView;//单张扑克牌视图
  18. @property (nonatomic, assign) CGFloat height;//视图的高度
  19. @property (nonatomic, assign) CGFloat pokWidth;//扑克牌的宽度
  20. @property (nonatomic, assign) CGFloat pokHeight;//扑克牌的高度
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *BullPokerTwoLeftLeading;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *BullPokerThreeLeftLeading;
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *BullPokerFourLeftLeading;
  24. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *BullPokerFiveLeftLeding;
  25. //隐藏所有的牌
  26. - (void)hidenBullPoker:(BOOL)hiden;
  27. @end