22 lines
362 B
C
22 lines
362 B
C
|
|
//
|
||
|
|
// FirstViewController.h
|
||
|
|
// Talk
|
||
|
|
//
|
||
|
|
// Created by xuzs on 22/10/11.
|
||
|
|
// Copyright (c) 2022年 xuzs. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import <CoreBluetooth/CoreBluetooth.h>
|
||
|
|
#import "BaseViewController.h"
|
||
|
|
|
||
|
|
@interface OpenPwd : BaseViewController
|
||
|
|
@property(nonatomic) UIViewController *parent;
|
||
|
|
|
||
|
|
- (void)setUI;
|
||
|
|
- (void)focusTextField;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|
||
|
|
|