// // PlanCell.h // jiaPeiC // // Created by apple on 15/12/18. // Copyright © 2015年 JCZ. All rights reserved. // #import @interface PlanCell : UITableViewCell { MyBlockType clkBlock; UILabel* lblName,*lblNum,*lblDate,*titNum,*titDate,*titCount,*countLabel; UIImageView* imgNum,*imgDate; UIButton* btnScan; } @property(nonatomic,strong) NSDictionary* model; +(PlanCell*)cellForTabelView:(UITableView*)tableView; -(void)click:(MyBlockType)block; /**设置style为1.隐藏查看按钮。 给学生查看计划用的。 */ @property(nonatomic,assign)int style; @end CGFloat PlanCellHeight();