12345678910111213141516171819202122232425262728293031323334 |
- //
- // PlanCell.h
- // jiaPeiC
- //
- // Created by apple on 15/12/18.
- // Copyright © 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PlanCell : UITableViewCell
- @property(nonatomic, strong) UIButton *on_offBtn;
- @property(nonatomic, strong) UIButton *temperatureBtn;
- //@property(nonatomic, strong) UIButton *orbitBtn;
- @property(nonatomic, strong) UIButton *telBtn;
- //@property(nonatomic, strong) UILabel *TPLabel;
- //@property(nonatomic, strong) UILabel *TimeLabel;
- @property(nonatomic, strong) UILabel *nameLabel;
- @property(nonatomic, strong) UIImageView *headImg;
- @property(nonatomic, strong) NSDictionary *model;
- //@property(nonatomic, retain) UIViewController *superVC;
- +(PlanCell*)cellForTabelView:(UITableView*)tableView;
- @end
|