This commit is contained in:
ifish 2017-09-17 14:29:15 +08:00
parent bce3e594ca
commit ada819836c
6 changed files with 14 additions and 10 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.6.2</string>
<string>4.6.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
@ -70,7 +70,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>4.6.1</string>
<string>4.6.3</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>

View File

@ -489,7 +489,6 @@
[RuSun84BackMsgUtils readSoketDataWithBaackMassgModel:_backmodel addWithBackData:data];
//
dispatch_async(dispatch_get_main_queue(), ^{
[RuSun84BackMsgUtils setTemperaturelabel:self.temperature addbubleImge:self.bubble WithBackData:data addWithBackMassageModel:_backmodel addWithTableview:self.tableView];
@ -527,6 +526,7 @@
});
//
dispatch_async(dispatch_get_main_queue(), ^{

View File

@ -3528,7 +3528,6 @@
}
//
self.isReject = NO;
[NSThread detachNewThreadSelector:@selector(renderView) toTarget:self withObject:nil];
@ -4520,7 +4519,6 @@
NSString *stringFloat = [NSString stringWithFormat:@"%d",temp];
NSLog(@"%@",stringFloat);
NSArray*wenDuArr=[_ruSunPicview.picArr objectAtIndex:0];
//线 _xutoMainQueue
@ -4560,7 +4558,7 @@
-(void)selectRuSun84Index:(NSIndexPath*)index withbackModle:(RunSun84Protocol *)backModel
{
//
[self showRunHotCoolPic];
[self showRunHotCoolPic:backModel];
[self ruSun84MianQueWith];
}
@ -4609,13 +4607,20 @@
#pragma mark -
-(void)showRunHotCoolPic
-(void)showRunHotCoolPic:(RunSun84Protocol *)backModel
{
_ruSunPicview=[[HaveHotCoolWenDuPicview alloc] init];
_ruSunPicview.frame=CGRectMake(0, 0, kScreenSize.width, kScreenSize.height);
[_ruSunPicview.sureBtn addTarget:self action:@selector(hotCoolBtnClick:) forControlEvents:UIControlEventTouchUpInside];
[self.view.window addSubview:_ruSunPicview];
_ruSunPicview.wenDuPicviewDelegate = self;
NSString *stateStr =nil;
if ([backModel.hotCool isKindOfClass:[NSNull class]]||!backModel.hotCool) {
backModel.hotCool = @"0000";
}
stateStr = [backModel.hotCool substringWithRange:NSMakeRange(2, 2)];
[_ruSunPicview initCateBtnSate:stateStr];
if (!_xutoMainQueue) {
_xutoMainQueue = dispatch_get_main_queue();
}

View File

@ -1598,12 +1598,11 @@
}
[RuSun84BackMsgUtils readSoketDataWithBaackMassgModel:_ruSun84Back addWithBackData:data];
self.temperature = [BootomViewSoketBackMasgConreol getTempNewWayWithSoketData:data adddeviceType:DECICE_TYPE_THREETMP];
self.temperature = [BootomViewSoketBackMasgConreol getTempNewWayWithSoketData:data adddeviceType:DECICE_TYPE_RUSUN2A];
[self.collectionView reloadData];
NSArray *timerArr=[RuSunBackMessageUtils refreshRuSunTimerAddTemperatureWithBackMassageModel:_ruSunBack];
NSArray *timerArr=[RuSun84BackMsgUtils refreshRuSunTimerAddTemperatureWithBackMassageModel:_ruSun84Back];
[self.MonitorBottomDelegate setTimeVCReloadDatawithTimerArr:timerArr
withData:self.device
addMassglength:string1.length];