34 lines
781 B
Objective-C
34 lines
781 B
Objective-C
//
|
|
// ConnectWifiViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/28.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
#import "MBProgressHUD.h"
|
|
//较老版本绑定设备界面 已无用
|
|
@interface ConnectWifiViewController :BaseViewController<MBProgressHUDDelegate>
|
|
|
|
- (IBAction)connect:(id)sender;
|
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *wifiView;
|
|
|
|
- (IBAction)notconnectwifi:(id)sender;
|
|
|
|
@property(nonatomic,strong)NSString*ssid;
|
|
@property(nonatomic,strong)NSString*bssid;
|
|
@property(nonatomic,strong)UITextField*wifiFiled;
|
|
|
|
@property(nonatomic,strong)NSString*deviceBssid;
|
|
|
|
|
|
- (IBAction)fankuiBtn:(id)sender;
|
|
|
|
- (IBAction)connectError:(id)sender;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *shuomingView;
|
|
|
|
@end
|