| 12345678910111213141516171819202122232425262728293031 |
- //
- // FourImageCell.h
- // 千模
- //
- // Created by MUMEI on 2018/6/7.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PrivateModel.h"
- @protocol FourImageDelegate <NSObject>
- @optional
- -(void)clickImage:(PrivateModel *)model andNum:(int)num;
- @end
- @interface FourImageCell : UITableViewCell
- @property (strong, nonatomic) PrivateModel *model;
- @property (assign, nonatomic) int num;
- @property (strong, nonatomic) NSString *str;
- @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *image1;
- @property (weak, nonatomic) IBOutlet UIImageView *image2;
- @property (weak, nonatomic) IBOutlet UIImageView *image3;
- @property (weak, nonatomic) IBOutlet UIImageView *image4;
- @property (weak, nonatomic) IBOutlet UILabel *Mounth;
- @property (weak, nonatomic) IBOutlet UILabel *Day;
- @property (assign, nonatomic) BOOL noMonth;
- @property(nonatomic,weak) id<FourImageDelegate> delegate;
- @end
|