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
|