TwoImageCell.h 772 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TwoImageCell.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 TwoImageDelegate <NSObject>
  11. @optional
  12. -(void)clickImage:(PrivateModel *)model andNum:(int)num;
  13. @end
  14. @interface TwoImageCell : UITableViewCell
  15. @property (strong, nonatomic) PrivateModel *model;
  16. @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
  17. @property (weak, nonatomic) IBOutlet UIImageView *oneImage;
  18. @property (weak, nonatomic) IBOutlet UIImageView *twoImage;
  19. @property (weak, nonatomic) IBOutlet UILabel *Day;
  20. @property (weak, nonatomic) IBOutlet UILabel *Month;
  21. @property (assign, nonatomic) BOOL noMonth;
  22. @property(nonatomic,weak) id<TwoImageDelegate> delegate;
  23. @end