TUIWeakProxy.h 428 B

123456789101112131415161718192021
  1. //
  2. // TUIWeakProxy.h
  3. // TUICore
  4. //
  5. // Created by harvy on 2023/4/17.
  6. // Copyright (c) 2023 Tencent. All rights reserved.
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface TUIWeakProxy : NSProxy
  10. @property(nonatomic, weak, readonly, nullable) id target;
  11. - (nonnull instancetype)initWithTarget:(nonnull id)target;
  12. + (nonnull instancetype)proxyWithTarget:(nonnull id)target;
  13. @end
  14. NS_ASSUME_NONNULL_END