-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
i read the "__objc_catlist" section data, the i used clsPointer.name, the value is category name, i also want get category cls info.
for example:
// the source code is :
@interface UIImage (AFNetworkingSafeImageLoading)
+ (UIImage *)af_safeImageWithData:(NSData *)data;
@end
static NSLock* imageLock = nil;
@implementation UIImage (AFNetworkingSafeImageLoading)
+ (UIImage *)af_safeImageWithData:(NSData *)data {
UIImage* image = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
imageLock = [[NSLock alloc] init];
});
[imageLock lock];
image = [UIImage imageWithData:data];
[imageLock unlock];
return image;
}
@end
used macho-kit, the result is AFNetworkingSafeImageLoading, but i also want to get the class UIImage, how can i get the info
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels