diff options
author | Vitaly Takmazov | 2019-10-01 17:29:46 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-10-01 22:14:59 +0300 |
commit | dbab6ab54c40a016f75e75a4143576c3fa41c3e0 (patch) | |
tree | 6fd5e68ec76c249fcaa07219c53ccab2f4c98fd5 /Juick/Helpers/NSData+Hex.h | |
parent | aeb513ed5c165e355c9c378efde7445f597d0380 (diff) |
Drop AFNetworking and SSKeychain
Diffstat (limited to 'Juick/Helpers/NSData+Hex.h')
-rw-r--r-- | Juick/Helpers/NSData+Hex.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Juick/Helpers/NSData+Hex.h b/Juick/Helpers/NSData+Hex.h new file mode 100644 index 0000000..bd8e519 --- /dev/null +++ b/Juick/Helpers/NSData+Hex.h @@ -0,0 +1,19 @@ +// +// NSData+Hex.h +// Juick +// +// Created by Vitaly Takmazov on 01/10/2019. +// Copyright © 2019 com.juick. All rights reserved. +// + +#import <Foundation/Foundation.h> + +NS_ASSUME_NONNULL_BEGIN + +@interface NSData (Hex) + +- (NSString *)hexString; + +@end + +NS_ASSUME_NONNULL_END |