// // ReplyCell.h // jiaPeiC // // Created by apple on 15/12/25. // Copyright © 2015年 JCZ. All rights reserved. // #import @interface ReplyCell : UITableViewCell { /**已预约 */ UIImageView *ivReady; BlockTypeVo comp; MyBlockType clkBlock; } @property(nonatomic,strong) UILabel *dateLabel; @property(nonatomic,strong) UIButton *btnYes; @property(nonatomic,strong) UIButton *btnNO; @property(nonatomic,strong) UIButton *selectBtn; @property(nonatomic,strong) NSDictionary *model; /**如果为1. 隐藏同意和不同意按钮按钮。 在不同意上面显示。已预约了。 */ @property(nonatomic,assign) int style; +(id)cellForTabelView:(UITableView*)tableView; /**点击了cell之后。通知VC重新加载数据。 */ -(void)setClickBlock:(BlockTypeVo)block; -(void)click:(MyBlockType)block; -(void)setCanEdit; -(void)setCanNotEdit; @end /** 上传 预约状态的操作。就放到cell里面做吧。 还可以设置一个style。如果为1. 这里没有已拒绝的按钮。 隐藏同意和不同意按钮按钮。 在不同意上面显示。已预约了。 */