42 lines
783 B
Objective-C
42 lines
783 B
Objective-C
//
|
|
// FourControlSetViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/24.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
#import "Socketsingleton.h"
|
|
/**
|
|
* 无换图片功能四控设置界面
|
|
*/
|
|
@interface FourControlSetViewController : FatherController
|
|
|
|
{
|
|
BOOL _isHidden;
|
|
BOOL mySwitchIsOn;
|
|
|
|
}
|
|
|
|
@property(nonatomic,strong)NSArray*timeArr;
|
|
@property(nonatomic,strong)NSArray*titleArr;
|
|
@property(nonatomic)BOOL isAuto;// 自动模式
|
|
|
|
//@property(nonatomic,copy)ReturnBoolBlock returnboolBlock;
|
|
//-(void)returnBool:(ReturnBoolBlock)block;
|
|
|
|
@property(nonatomic)UIActivityIndicatorView*indicatorView;
|
|
|
|
-(void)addAlertView;
|
|
|
|
|
|
@property(nonatomic)int percent;
|
|
|
|
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
|
|
|
|
|
|
@end
|