34 lines
662 B
Objective-C
34 lines
662 B
Objective-C
//
|
|
// TwoControlnoneTimerViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/2/26.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
//两控 零定时器
|
|
#import "Socketsingleton.h"
|
|
@interface TwoControlnoneTimerViewController : FatherController
|
|
{
|
|
BOOL _isHidden;
|
|
BOOL mySwitchIsOn;
|
|
|
|
}
|
|
|
|
@property(nonatomic,strong)NSArray*timeArr;
|
|
|
|
@property(nonatomic,strong)NSArray*titleArr;
|
|
|
|
@property(nonatomic,strong)UIButton*mySwitchButton;
|
|
|
|
@property(nonatomic)UIActivityIndicatorView*indicatorView;
|
|
|
|
-(void)addAlertView;
|
|
|
|
@property(nonatomic)int percent;
|
|
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
|
|
@end
|