PushStateCell.h 446 B

123456789101112131415161718192021
  1. //
  2. // PushStateCell.h
  3. // model
  4. //
  5. // Created by MUMEI on 2018/8/2.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol pushOrderDelegate <NSObject>
  10. @optional
  11. -(void)clickImage;
  12. @end
  13. @interface PushStateCell : UITableViewCell
  14. @property (weak, nonatomic) IBOutlet UILabel *Day;
  15. @property (weak, nonatomic) IBOutlet UIImageView *pushImage;
  16. @property (weak, nonatomic) id<pushOrderDelegate> delegate;
  17. @end