PlanCell.h 667 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // PlanCell.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 15/12/18.
  6. // Copyright © 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PlanCell : UITableViewCell
  10. {
  11. MyBlockType clkBlock;
  12. UILabel* lblName,*lblNum,*lblDate,*titNum,*titDate,*titCount,*countLabel;
  13. UIImageView* imgNum,*imgDate;
  14. UIButton* btnScan;
  15. }
  16. @property(nonatomic,strong) NSDictionary* model;
  17. +(PlanCell*)cellForTabelView:(UITableView*)tableView;
  18. -(void)click:(MyBlockType)block;
  19. /**设置style为1.隐藏查看按钮。
  20. 给学生查看计划用的。
  21. */
  22. @property(nonatomic,assign)int style;
  23. @end
  24. CGFloat PlanCellHeight();