33 lines
684 B
Objective-C
33 lines
684 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;
|
|
/// 是否是新绚多设备
|
|
@property(nonatomic,assign)BOOL isNewDevice;
|
|
|
|
-(void)addAlertView;
|
|
|
|
@property(nonatomic)int percent;
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
|
|
|
|
@end
|