1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // AudioSessionHelper.h
| // VideoPhone
| //
| // Created by eTouchSky on 2019/5/30.
| // Copyright © 2019 eTouchSky. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
|
|
| @interface AudioSessionHelper : NSObject
|
| - (void)setAudioSession;
| -(NSString *)speaker:(BOOL)isSpeaking;
| @end
|
|