解决了语音上传到问题,接下来要解决下载播放问题
This commit is contained in:
18
Pods/Qiniu/QiniuSDK/Utils/QNDefine.h
generated
Normal file
18
Pods/Qiniu/QiniuSDK/Utils/QNDefine.h
generated
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// QNDefine.h
|
||||
// QiniuSDK
|
||||
//
|
||||
// Created by yangsen on 2020/9/4.
|
||||
// Copyright © 2020 Qiniu. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#define kQNWeakSelf __weak typeof(self) weak_self = self
|
||||
#define kQNStrongSelf __strong typeof(self) self = weak_self
|
||||
|
||||
#define kQNWeakObj(object) __weak typeof(object) weak_##object = object
|
||||
#define kQNStrongObj(object) __strong typeof(object) object = weak_##object
|
||||
|
||||
// 过期
|
||||
#define kQNDeprecated(instead) NS_DEPRECATED(2_0, 2_0, 2_0, 2_0, instead)
|
||||
Reference in New Issue
Block a user