| 12345678910111213141516171819202122232425262728 |
- //
- // PingLunCell.h
- // model
- //
- // Created by MUMEI on 2018/8/6.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PingLunModel.h"
- @protocol PingLunDelegate <NSObject>
- @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<PingLunDelegate> delegate;
- @end
|