24 lines
685 B
Objective-C
24 lines
685 B
Objective-C
//
|
|
// FourControlNormalCenterController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/24.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
|
|
@interface FourControlNormalCenterController : CenterViewController
|
|
@property(nonatomic,strong)UIButton*button;
|
|
@property(nonatomic,strong)UIButton*light1Button;
|
|
@property(nonatomic,strong)UIButton*light2Button;
|
|
@property(nonatomic,strong)UIButton*light3Button;
|
|
@property(nonatomic,strong)UIButton*pumpButton;
|
|
|
|
@property(nonatomic,strong) UILabel *light1Name;
|
|
@property(nonatomic,strong) UILabel *light2Name;
|
|
@property(nonatomic,strong) UILabel *uVName;
|
|
@property(nonatomic,strong) UILabel *pumpName;
|
|
|
|
@end
|