Created
October 20, 2013 16:41
-
-
Save Anviking/7072001 to your computer and use it in GitHub Desktop.
Alternative to method swizzling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation NSLayoutManager (JLLayoutManager) | |
+ (id)alloc | |
// Let us replace the NSLayoutManager with JLLayoutManager | |
{ | |
if ([self class] == [NSLayoutManager class]) { | |
return [JLLayoutManager alloc]; | |
} | |
return [super alloc]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment