56 lines
1.8 KiB
Objective-C
56 lines
1.8 KiB
Objective-C
//
|
|
// ConfigWfiViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by 祝发冬 on 2023/8/15.
|
|
// Copyright © 2023 lianlian. All rights reserved.
|
|
//
|
|
#import "BaseViewController.h"
|
|
#import "LXWaveProgressView.h"
|
|
#import "StoreNameView.h"
|
|
#import "EspTouchDelegateImpl.h"
|
|
|
|
#import "JMAirKiss.h"
|
|
#import "HUDTools.h"
|
|
#import <NetworkExtension/NetworkExtension.h>
|
|
#import <CoreLocation/CoreLocation.h>
|
|
@interface ConfigWifiViewController : BaseViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *wifiNamelabel;
|
|
@property (weak, nonatomic) IBOutlet UITextField *wifiTextFiled;
|
|
@property (weak, nonatomic) IBOutlet UIView *connectingView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *apBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *reasonBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *resultLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *indicator;
|
|
@property (weak, nonatomic) IBOutlet UIView *line;
|
|
|
|
|
|
|
|
@property (nonatomic, strong) UIView *mask;
|
|
@property (nonatomic, strong) StoreNameView *storeNameView;
|
|
@property (nonatomic, strong) NSString *storeName;
|
|
|
|
- (IBAction)makeSureButton:(id)sender;
|
|
|
|
- (IBAction)connectTypeClick:(id)sender;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *connectTypeTitle;
|
|
@property (weak, nonatomic) IBOutlet UIButton *shuoMingShuBtn;
|
|
@property(nonatomic,strong)NSString*ssid;
|
|
@property(nonatomic,strong)NSString*wifiPass;
|
|
@property(nonatomic,strong)NSString*bssid;
|
|
@property(nonatomic,strong)NSString*deviceBssid;
|
|
@property (weak, nonatomic) IBOutlet UIButton *connectTypeBtn;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *connectTipLbl;
|
|
@property (weak, nonatomic) IBOutlet UIButton *connectBtn;
|
|
@property(nonatomic,copy)NSString*vcTitle;
|
|
//界面复用 设备类型
|
|
@property (assign, nonatomic) SmartDeviceType deviceType;
|
|
//配网配型
|
|
@property (assign, nonatomic) ConnectType connectType;
|
|
|
|
@end
|