46 lines
1.2 KiB
Objective-C
46 lines
1.2 KiB
Objective-C
//
|
|
// RuiMeiBackMsgUtils.h
|
|
// Ifish
|
|
//
|
|
// Created by Minghao Xue on 2018/4/14.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RuiMeiProtocolModel.h"
|
|
|
|
#define DataCenterRuiMeiModelKey @"DataCenterRuiMeiModelKey"
|
|
|
|
@interface RuiMeiBackMsgUtils : NSObject
|
|
|
|
/**
|
|
* save soket massage control
|
|
*/
|
|
+(void)readSoketDataWithBaackMassgModel:(RuiMeiProtocolModel*)ruSunModel
|
|
addWithBackData:(NSData*)data;
|
|
|
|
/**
|
|
* setTemperaturelabel
|
|
*/
|
|
+(void)setTemperaturelabel:(UILabel*)temperaturelabel
|
|
addbubleImge:(UIImageView*)bubleImg
|
|
WithBackData:(NSData*)data
|
|
addWithBackMassageModel:(RuiMeiProtocolModel*)backModel
|
|
addWithTableview:(UITableView*)tableview;
|
|
/**
|
|
* light state
|
|
*/
|
|
|
|
+(void)resetRuSunCHState:(UIButton*)ch1
|
|
ch2:(UIButton*)ch2
|
|
ch3:(UIButton*)ch3
|
|
ch4:(UIButton*)ch4
|
|
andJiaRe:(UIButton*)jiaReBang
|
|
withBackModel:(RuiMeiProtocolModel*)backModel;
|
|
/**
|
|
* refresh setViewData
|
|
*/
|
|
+(NSArray*)refreshRuSunTimerAddTemperatureWithBackMassageModel:(RuiMeiProtocolModel*)backModel;
|
|
|
|
@end
|