PlanCell.h 798 B

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