GameHistoryTableViewCell.h 636 B

123456789101112131415161718192021
  1. //
  2. // GameHistoryTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/12/5.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface GameHistoryTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *historyNewImg;
  11. @property (weak, nonatomic) IBOutlet UIImageView *leftImg;
  12. @property (weak, nonatomic) IBOutlet UIImageView *midImg;
  13. @property (weak, nonatomic) IBOutlet UIImageView *rightImg;
  14. @property (nonatomic, strong) NSArray * imageViewArr;
  15. @property (nonatomic, assign) NSInteger gameID;
  16. - (void)createCellWithArray:(NSNumber *)winNum withRow:(NSInteger)row;
  17. @end