Skip selector check in proxy

This commit is contained in:
Adlai Holler
2016-09-09 18:57:49 -07:00
parent c615566f95
commit e618012aa3

View File

@@ -48,7 +48,7 @@
- (void)forwardInvocation:(NSInvocation *)invocation
{
id target = _target;
if ([target respondsToSelector:invocation.selector]) {
if (target != nil) {
[invocation invokeWithTarget:target];
}
}