FourImageCell.h 972 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // FourImageCell.h
  3. // 千模
  4. //
  5. // Created by MUMEI on 2018/6/7.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PrivateModel.h"
  10. @protocol FourImageDelegate <NSObject>
  11. @optional
  12. -(void)clickImage:(PrivateModel *)model andNum:(int)num;
  13. @end
  14. @interface FourImageCell : UITableViewCell
  15. @property (strong, nonatomic) PrivateModel *model;
  16. @property (assign, nonatomic) int num;
  17. @property (strong, nonatomic) NSString *str;
  18. @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
  19. @property (weak, nonatomic) IBOutlet UIImageView *image1;
  20. @property (weak, nonatomic) IBOutlet UIImageView *image2;
  21. @property (weak, nonatomic) IBOutlet UIImageView *image3;
  22. @property (weak, nonatomic) IBOutlet UIImageView *image4;
  23. @property (weak, nonatomic) IBOutlet UILabel *Mounth;
  24. @property (weak, nonatomic) IBOutlet UILabel *Day;
  25. @property (assign, nonatomic) BOOL noMonth;
  26. @property(nonatomic,weak) id<FourImageDelegate> delegate;
  27. @end