mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-18 19:07:16 +00:00
11 lines
291 B
C
11 lines
291 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface NSData (ResKnifeHexRepresentationExtensions)
|
||
|
- (NSString *)hexRepresentation;
|
||
|
- (NSString *)asciiRepresentation;
|
||
|
- (NSString *)nonLossyAsciiRepresentation;
|
||
|
@end
|
||
|
|
||
|
@interface NSString (ResKnifeHexConversionExtensions)
|
||
|
- (NSData *)dataFromHex;
|
||
|
@end
|