PlayingCardView.h 678 B

12345678910111213141516171819202122
  1. //
  2. // PlayingCardView.h
  3. // GoldenFlowerDemo
  4. //
  5. // Created by GuoMs on 16/11/22.
  6. // Copyright © 2016年 zcd. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PlayingCardView : UIView
  10. //牌的点数
  11. @property (weak, nonatomic) IBOutlet UIImageView *numberOfCard;
  12. //牌的花色(大的)
  13. @property (weak, nonatomic) IBOutlet UIImageView *bigSuit;
  14. //牌的花色(小的)
  15. @property (weak, nonatomic) IBOutlet UIImageView *smallSuit;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *numberOfCardWidth;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *smallSuitWidth;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bigSuitWidth;
  19. @end