36 lines
1.1 KiB
Objective-C
36 lines
1.1 KiB
Objective-C
//
|
|
// SecondConnectWifiController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/2/24.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
#import "LXWaveProgressView.h"
|
|
|
|
@interface SecondConnectWifiController : BaseViewController
|
|
@property (weak, nonatomic) IBOutlet UIImageView *wifigifImgView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *wifiNamelabel;
|
|
@property (weak, nonatomic) IBOutlet UITextField *wifiTextFiled;
|
|
@property (weak, nonatomic) IBOutlet UILabel *redTextLable;
|
|
|
|
- (IBAction)makeSureButton:(id)sender;
|
|
|
|
- (IBAction)lickHereBtnClicked:(id)sender;
|
|
|
|
@property(nonatomic,strong)NSString*ssid;
|
|
@property(nonatomic,strong)NSString*bssid;
|
|
@property(nonatomic,strong)NSString*deviceBssid;
|
|
@property (weak, nonatomic) IBOutlet UIButton *shareButton;
|
|
@property (weak, nonatomic) IBOutlet LXWaveProgressView *waveProgressView;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *shuoMingShuBtn;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *nodImg;
|
|
@property (weak, nonatomic) IBOutlet UILabel *connectTipLbl;
|
|
@property (weak, nonatomic) IBOutlet UIButton *connectBtn;
|
|
@property(nonatomic,copy)NSString*vcTitle;
|
|
|
|
@end
|
|
|