mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
379 B
Objective-C
19 lines
379 B
Objective-C
#import <MtProtoKit/MTKeychain.h>
|
|
|
|
@implementation MTDeprecated
|
|
|
|
+ (id)unarchiveDeprecatedWithData:(NSData *)data {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
@try {
|
|
return [NSKeyedUnarchiver unarchiveObjectWithData:data];
|
|
} @catch(NSException *e) {
|
|
return nil;
|
|
}
|
|
#pragma clang diagnostic pop
|
|
}
|
|
|
|
@end
|
|
|
|
|