GameGiftCell.h 516 B

1234567891011121314151617
  1. //
  2. // GameGiftCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/28.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface GameGiftCell : UICollectionViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *selectedImageView;
  11. @property (weak, nonatomic) IBOutlet UIImageView *giftImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *diamondLabel;
  13. @property (weak, nonatomic) IBOutlet UIImageView *diamondImageView;
  14. @property (nonatomic , strong) GiftModel * model;
  15. @end