29 lines
626 B
Objective-C
29 lines
626 B
Objective-C
//
|
|
// RuiMeiSetViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by Minghao Xue on 2018/4/22.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
|
|
@interface RuiMeiSetViewController : 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)int percent;
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
@property (nonatomic, assign) BOOL customModeOn;
|
|
|
|
@end
|