24 lines
647 B
Objective-C
24 lines
647 B
Objective-C
//
|
|
// ThreeControlCenterViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/4/18.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
|
|
@interface ThreeControlCenterViewController : CenterViewController
|
|
@property(nonatomic,strong) UIButton *button;
|
|
@property(nonatomic,strong) UIButton *light1Button;
|
|
@property(nonatomic,strong) UIButton *light2Button;
|
|
@property(nonatomic,strong) UIButton *pumpButton;
|
|
|
|
@property(nonatomic,strong)UILabel *buttonNameLabel;
|
|
@property(nonatomic,strong)UILabel *light1name;
|
|
@property(nonatomic,strong)UILabel *light2name;
|
|
@property(nonatomic,strong)UILabel *pumpname;
|
|
|
|
|
|
@end
|