We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7779866 + 292539c commit d5a6857Copy full SHA for d5a6857
src/Core/Styling/Utils/PXProxy.m
@@ -83,6 +83,12 @@ - (BOOL)respondsToSelector:(SEL)aSelector
83
return NO;
84
}
85
86
+- (BOOL)conformsToProtocol:(Protocol *)aProtocol {
87
+ if ([self.overridingObject conformsToProtocol:aProtocol]) return YES;
88
+ if ([self.baseObject conformsToProtocol:aProtocol]) return YES;
89
+ return NO;
90
+}
91
+
92
#pragma mark - hash and equality
93
94
/// make sure we look like the original object
0 commit comments