mop-flutter-sdk/ios/Classes/FinAppletExt/Common/Manager/FATExtAVManager.h

37 lines
610 B
Dart
Raw Normal View History

2023-08-02 19:36:40 +08:00
//
// FATExtAVManager.h
// FinAppletExt
//
// Created by Haley on 2020/8/14.
// Copyright © 2020 finogeeks. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef void (^FATExtAVSuccess)(NSString *filePath);
typedef void (^FATExtAVFail)(NSString *failMsg);
@interface FATExtAVManager : NSObject
+ (instancetype)sharedManager;
/**
@param success
@param fail
*/
- (void)startRecordWithSuccess:(FATExtAVSuccess)success fail:(FATExtAVFail)fail;
/**
*/
- (void)stopRecord;
/**
*/
- (void)checkRecordState;
@end