12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * This file is part of the SDWebImage package.
- * (c) Olivier Poitrey <rs@dailymotion.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- #import "SDWeakProxy.h"
- @implementation SDWeakProxy
- - (instancetype)initWithTarget:(id)target {
- _target = target;
- return self;
- }
- + (instancetype)proxyWithTarget:(id)target {
- return [[SDWeakProxy alloc] initWithTarget:target];
- }
- - (id)forwardingTargetForSelector:(SEL)selector {
- return _target;
- }
- - (void)forwardInvocation:(NSInvocation *)invocation {
- void *null = NULL;
- [invocation setReturnValue:&null];
- }
- - (NSMethodSignature *)methodSignatureForSelector:(SEL)selector {
- return [NSObject instanceMethodSignatureForSelector:@selector(init)];
- }
- - (BOOL)respondsToSelector:(SEL)aSelector {
- return [_target respondsToSelector:aSelector];
- }
- - (BOOL)isEqual:(id)object {
- return [_target isEqual:object];
- }
- - (NSUInteger)hash {
- return [_target hash];
- }
- - (Class)superclass {
- return [_target superclass];
- }
- - (Class)class {
- return [_target class];
- }
- - (BOOL)isKindOfClass:(Class)aClass {
- return [_target isKindOfClass:aClass];
- }
- - (BOOL)isMemberOfClass:(Class)aClass {
- return [_target isMemberOfClass:aClass];
- }
- - (BOOL)conformsToProtocol:(Protocol *)aProtocol {
- return [_target conformsToProtocol:aProtocol];
- }
- - (BOOL)isProxy {
- return YES;
- }
- - (NSString *)description {
- return [_target description];
- }
- - (NSString *)debugDescription {
- return [_target debugDescription];
- }
- @end
|