解决了语音上传到问题,接下来要解决下载播放问题
This commit is contained in:
32
Pods/Qiniu/QiniuSDK/Http/QNUploadRequestState.m
generated
Normal file
32
Pods/Qiniu/QiniuSDK/Http/QNUploadRequestState.m
generated
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// QNUploadRequestState.m
|
||||
// QiniuSDK_Mac
|
||||
//
|
||||
// Created by yangsen on 2020/11/17.
|
||||
// Copyright © 2020 Qiniu. All rights reserved.
|
||||
//
|
||||
|
||||
#import "QNIUploadServer.h"
|
||||
#import "QNUploadRequestState.h"
|
||||
|
||||
@implementation QNUploadRequestState
|
||||
- (instancetype)init{
|
||||
if (self = [super init]) {
|
||||
[self initData];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)initData{
|
||||
_isUserCancel = NO;
|
||||
_isUseOldServer = NO;
|
||||
}
|
||||
|
||||
- (instancetype)copy {
|
||||
QNUploadRequestState *state = [[QNUploadRequestState alloc] init];
|
||||
state.isUserCancel = self.isUserCancel;
|
||||
state.isUseOldServer = self.isUseOldServer;
|
||||
return state;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user