You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// |
|
// SGWeakProxy.h |
|
// SGQRCodeExample |
|
// |
|
// Created by kingsic on 2022/7/2. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SGWeakProxy : NSProxy |
|
/// 类方法创建 SGWeakProxy |
|
+ (instancetype)weakProxyWithTarget:(id)aTarget; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|