1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // LoginInVC.h
| // VoipTest
| //
| // Created by StevStark on 2020/11/18.
| //
|
| #import <UIKit/UIKit.h>
| #import "LinphoneManager.h"
| NS_ASSUME_NONNULL_BEGIN
|
| @interface LoginInVC : UIViewController
| @property (weak, nonatomic) IBOutlet UITextField *t_account;
| @property (weak, nonatomic) IBOutlet UITextField *t_pwd;
|
| @property (weak, nonatomic) IBOutlet UITextField *t_domain;
| @property (weak, nonatomic) IBOutlet UILabel *logView;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|