123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // PlanCell.h
- // jiaPeiC
- //
- // Created by apple on 15/12/18.
- // Copyright © 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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();
|