SLProxy.h 408 B

12345678910111213141516171819
  1. //
  2. // SLProxy.h
  3. // DarkMode
  4. //
  5. // Created by wsl on 2020/7/14.
  6. // Copyright © 2020 https://github.com/wsl2ls ----- . All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. ///消息转发中介 主要解决NSTimer、CADisplayLink等循环引用问题
  11. @interface SLProxy : NSProxy
  12. ///初始化方法
  13. + (instancetype)proxyWithTarget:(id)target;
  14. @end
  15. NS_ASSUME_NONNULL_END