解决了语音上传到问题,接下来要解决下载播放问题
This commit is contained in:
30
Pods/Qiniu/QiniuSDK/Common/QNZone.m
generated
Normal file
30
Pods/Qiniu/QiniuSDK/Common/QNZone.m
generated
Normal file
@@ -0,0 +1,30 @@
|
||||
//
|
||||
// QNZone.m
|
||||
// QiniuSDK
|
||||
//
|
||||
// Created by yangsen on 2020/4/16.
|
||||
// Copyright © 2020 Qiniu. All rights reserved.
|
||||
//
|
||||
|
||||
#import "QNZone.h"
|
||||
#import "QNUpToken.h"
|
||||
#import "QNZoneInfo.h"
|
||||
#import "QNConfiguration.h"
|
||||
#import "QNResponseInfo.h"
|
||||
|
||||
@implementation QNZone
|
||||
|
||||
- (QNZonesInfo *)getZonesInfoWithToken:(QNUpToken *)token {
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (void)preQuery:(QNUpToken *)token
|
||||
on:(QNPrequeryReturn)ret {
|
||||
ret(0, nil, nil);
|
||||
}
|
||||
|
||||
- (void)query:(QNConfiguration * _Nullable)config token:(QNUpToken * _Nullable)token on:(QNQueryReturn _Nullable)ret {
|
||||
ret([QNResponseInfo responseInfoWithSDKInteriorError:@"impl query"], nil, nil);
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user