| 123456789101112131415161718192021 |
- //
- // PushStateCell.h
- // model
- //
- // Created by MUMEI on 2018/8/2.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol pushOrderDelegate <NSObject>
- @optional
- -(void)clickImage;
- @end
- @interface PushStateCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *Day;
- @property (weak, nonatomic) IBOutlet UIImageView *pushImage;
- @property (weak, nonatomic) id<pushOrderDelegate> delegate;
- @end
|