You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
491 B
Objective-C
24 lines
491 B
Objective-C
//
|
|
// NSDictionary+Debug.h
|
|
// pEpObjCAdapter
|
|
//
|
|
// Created by Dirk Zimmermann on 07.06.18.
|
|
// Copyright © 2018 p≡p. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSDictionary (Debug)
|
|
|
|
/**
|
|
Saves itself to the filesystem, under `NSApplicationSupportDirectory`.
|
|
*/
|
|
- (void)debugSaveToFilePath:(NSString * _Nonnull)filePath;
|
|
|
|
/**
|
|
Treating this object as a pEp messages, find out the references and print them (for debugging).
|
|
*/
|
|
- (void)dumpReferences;
|
|
|
|
@end
|