mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-23 20:39:39 +00:00
c8a9f70282
and CDTypeLexer. Disable a couple entry points into the old parsed that were being called by the obsolete ObjcIvar and ObjcMethod classes. Switched to using NSStrings throughout datatypes. Foundation instance variables get formatted pretty well, but it's crashing on AppKit.
11 lines
304 B
Objective-C
11 lines
304 B
Objective-C
#import <Foundation/NSString.h>
|
|
|
|
@interface NSString (CDExtensions)
|
|
|
|
- (id)initWithCString:(const char *)bytes maximumLength:(unsigned int)maximumLength;
|
|
//+ (NSString *)spacesOfLength:(int)length;
|
|
+ (NSString *)spacesIndentedToLevel:(int)level;
|
|
+ (NSString *)stringWithUnichar:(unichar)character;
|
|
|
|
@end
|