Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Pixate/pixate-freestyle-ios
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Colton committed Mar 17, 2014
2 parents 7779866 + 292539c commit d5a6857
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Core/Styling/Utils/PXProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ - (BOOL)respondsToSelector:(SEL)aSelector
return NO;
}

- (BOOL)conformsToProtocol:(Protocol *)aProtocol {
if ([self.overridingObject conformsToProtocol:aProtocol]) return YES;
if ([self.baseObject conformsToProtocol:aProtocol]) return YES;
return NO;
}

#pragma mark - hash and equality

/// make sure we look like the original object
Expand Down

0 comments on commit d5a6857

Please sign in to comment.