// // PingLunCell.h // model // // Created by MUMEI on 2018/8/6. // Copyright © 2018年 Mine. All rights reserved. // #import #import "PingLunModel.h" @protocol PingLunDelegate @optional -(void)deletePingLun:(NSString*)pk; @end @interface PingLunCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *iconImage; @property (weak, nonatomic) IBOutlet UILabel *name; @property (weak, nonatomic) IBOutlet UILabel *intro; @property (weak, nonatomic) IBOutlet UILabel *dateLabel; @property (weak, nonatomic) IBOutlet UIButton *deleteButton; @property (strong,nonatomic) PingLunModel *model; @property (weak, nonatomic) id delegate; @end