40 lines
692 B
Objective-C
40 lines
692 B
Objective-C
//
|
|
// SetTimeController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/27.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AsyncSocket.h"
|
|
#import "FatherController.h"
|
|
#import "Socketsingleton.h"
|
|
/**
|
|
* 三控 时间设置界面
|
|
*/
|
|
@interface SetTimeController : 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
|