37 lines
656 B
Objective-C
37 lines
656 B
Objective-C
//
|
|
// TwoControlSetTimeViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/1/27.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
|
|
#import "Socketsingleton.h"
|
|
//两控四定时器
|
|
|
|
@interface TwoControlSetTimeViewController : 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
|