1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // ViewController.h
| // HDLLinPhoneDemo
| //
| // Created by 陈启扬 on 2021/8/3.
| // Copyright © 2021 陈启扬. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface ViewController : UIViewController
| - (IBAction)LinPhoneCall:(id)sender;
|
| - (IBAction)logOut:(id)sender;
|
| - (IBAction)call:(id)sender;
| @end
|
|