I have a header file like this:
@class NSMutableDictionary, NSString;
@interface randomclassname : NSObject
{
unsigned long long _HTTPMethod;
NSString *_path;
unsigned long long _apiVersion;
NSMutableDictionary *_parameters;
NSMutableDictionary *_defaultParameters;
NSMutableDictionary *_headers;
_Bool _isSigned;
}
/// methods are down here
+ (id)builderWithHTTPMethod:(unsigned long long)arg1 path:(id)arg2;
I want to access and print NSMutableDictionary *_defaultParameters;
and
unsigned long long _apiVersion;
The follow properties inside my method object.
+ (id)builderWithHTTPMethod:(unsigned long long)arg1 format:(id)arg2
{
**access those properties here and print them on NSlog.**
return %orig;
}
Please feel free to correct me if I'm wrong. I'm not entirely sure if stuff inside @interface are called properties; I'm guessing. But that's what I'm trying to access.