33 lines
939 B
Objective-C
33 lines
939 B
Objective-C
//
|
|
// RuiMeiViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by Minghao Xue on 2018/4/14.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
|
|
//瑞美四控
|
|
@interface RuiMeiViewController : CenterViewController
|
|
@property(nonatomic,strong)UIButton*button;
|
|
|
|
@property(nonatomic,strong)UIButton *ch1Button;
|
|
@property(nonatomic,strong)UIButton *ch2Button;
|
|
@property(nonatomic,strong)UIButton *ch3Button;
|
|
@property(nonatomic,strong)UIButton *ch4Button;
|
|
|
|
@property(nonatomic,strong) UILabel *chName;
|
|
@property(nonatomic,strong) UILabel *ch1Name;
|
|
@property(nonatomic,strong) UILabel *ch2Name;
|
|
@property(nonatomic,strong) UILabel *ch3Name;
|
|
@property(nonatomic,strong) UILabel *ch4Name;
|
|
//S5 只控制温度
|
|
@property(nonatomic,strong) UILabel *jiaReName;
|
|
|
|
@property(nonatomic,strong)UIButton*heatBtn;
|
|
@property(nonatomic,strong) UILabel *hotcolLabe;
|
|
@property(nonatomic,strong) UILabel *hotcolTempLabe;
|
|
|
|
@end
|