//
|
// YYTextWeakProxy.m
|
// YYText <https://github.com/ibireme/YYText>
|
//
|
// Created by ibireme on 14/10/18.
|
// Copyright (c) 2015 ibireme.
|
//
|
// This source code is licensed under the MIT-style license found in the
|
// LICENSE file in the root directory of this source tree.
|
//
|
|
#import "YYTextWeakProxy.h"
|
|
|
@implementation YYTextWeakProxy
|
|
- (instancetype)initWithTarget:(id)target {
|
_target = target;
|
return self;
|
}
|
|
+ (instancetype)proxyWithTarget:(id)target {
|
return [[YYTextWeakProxy 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
|