解决了语音上传到问题,接下来要解决下载播放问题
This commit is contained in:
28
Pods/Qiniu/QiniuSDK/Utils/NSObject+QNSwizzle.h
generated
Normal file
28
Pods/Qiniu/QiniuSDK/Utils/NSObject+QNSwizzle.h
generated
Normal file
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// NSObject+QNSwizzle.h
|
||||
// HappyDNS
|
||||
//
|
||||
// Created by yangsen on 2020/4/13.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface NSObject(QNSwizzle)
|
||||
|
||||
/// swizzle 两个对象方法
|
||||
/// @param selectorA 方法a的sel
|
||||
/// @param selectorB 方法b的sel
|
||||
+ (BOOL)qn_swizzleInstanceMethodsOfSelectorA:(SEL)selectorA
|
||||
selectorB:(SEL)selectorB;
|
||||
|
||||
/// swizzle 两个类方法
|
||||
/// @param selectorA 方法a的sel
|
||||
/// @param selectorB 方法b的sel
|
||||
+ (BOOL)qn_swizzleClassMethodsOfSelectorA:(SEL)selectorA
|
||||
selectorB:(SEL)selectorB;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user