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]; | |
} |