PlanCell.h 739 B

123456789101112131415161718192021222324252627282930313233
  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. @property(nonatomic, strong) UIButton *on_offBtn;
  11. //@property(nonatomic, strong) UIButton *orbitBtn;
  12. @property(nonatomic, strong) UIButton *telBtn;
  13. //@property(nonatomic, strong) UILabel *TPLabel;
  14. //@property(nonatomic, strong) UILabel *TimeLabel;
  15. @property(nonatomic, strong) UILabel *nameLabel;
  16. @property(nonatomic, strong) UIImageView *headImg;
  17. @property(nonatomic, strong) NSDictionary *model;
  18. //@property(nonatomic, retain) UIViewController *superVC;
  19. +(PlanCell*)cellForTabelView:(UITableView*)tableView;
  20. @end