PingLunCell.h 704 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PingLunCell.h
  3. // model
  4. //
  5. // Created by MUMEI on 2018/8/6.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PingLunModel.h"
  10. @protocol PingLunDelegate <NSObject>
  11. @optional
  12. -(void)deletePingLun:(NSString*)pk;
  13. @end
  14. @interface PingLunCell : UITableViewCell
  15. @property (weak, nonatomic) IBOutlet UIImageView *iconImage;
  16. @property (weak, nonatomic) IBOutlet UILabel *name;
  17. @property (weak, nonatomic) IBOutlet UILabel *intro;
  18. @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
  19. @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
  20. @property (strong,nonatomic) PingLunModel *model;
  21. @property (weak, nonatomic) id<PingLunDelegate> delegate;
  22. @end