1、加热棒内容修改; 2、首页商品删除,更改为行业资讯; 3、绚多设备更名显示; 4、bugly更换为新版本; 5、摄像头显示bug修复; 6、开屏广告显示不全修复;
34 lines
641 B
Objective-C
34 lines
641 B
Objective-C
//
|
|
// XuToSetViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/4/22.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
#import "Socketsingleton.h"
|
|
|
|
|
|
/**
|
|
绚多水族箱设置
|
|
*/
|
|
@interface XuToSetViewController : FatherController
|
|
|
|
{
|
|
BOOL _isHidden;
|
|
BOOL mySwitchIsOn;
|
|
|
|
}
|
|
|
|
@property(nonatomic,strong)NSArray*timeArr;
|
|
@property(nonatomic,strong)NSArray*titleArr;
|
|
@property(nonatomic)BOOL isAuto;// 自动模式
|
|
@property(nonatomic)UIActivityIndicatorView*indicatorView;
|
|
-(void)addAlertView;
|
|
|
|
@property(nonatomic)int percent;
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
|
|
@end
|