123456789101112131415161718192021 |
- //
- // AudioShowView.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface AudioShowView : UIView
- TDShareInstance_interface(AudioShowView)
- @property (nonatomic, strong)AVAudioRecorder * recorder;
- - (void)show;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|