洛阳学员端
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.

36 lines
585 B

7 months ago
  1. //
  2. // APBProxy.h
  3. // BioAuthEngine
  4. //
  5. // Created by shouyi.www on 2017/3/29.
  6. // Copyright © 2017年 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface APBProxy : NSProxy
  10. /**
  11. The proxy target.
  12. */
  13. @property (nonatomic, weak, readonly) id target;
  14. /**
  15. Creates a new weak proxy for target.
  16. @param target Target object.
  17. @return A new proxy object.
  18. */
  19. - (instancetype)initWithTarget:(id)target;
  20. /**
  21. Creates a new weak proxy for target.
  22. @param target Target object.
  23. @return A new proxy object.
  24. */
  25. + (instancetype)proxyWithTarget:(id)target;
  26. @end