{"id":16669957,"url":"https://github.com/leptos-null/classdumpruntime","last_synced_at":"2025-03-21T17:32:40.505Z","repository":{"id":157508218,"uuid":"229383427","full_name":"leptos-null/ClassDumpRuntime","owner":"leptos-null","description":"Library to parse Objective-C classes at runtime","archived":false,"fork":false,"pushed_at":"2024-04-06T16:17:47.000Z","size":149,"stargazers_count":56,"open_issues_count":1,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-18T03:22:21.375Z","etag":null,"topics":["class-dump","classdump","objc-runtime","objective-c"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit-0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leptos-null.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-21T05:51:24.000Z","updated_at":"2025-02-16T12:50:08.000Z","dependencies_parsed_at":"2024-03-10T18:24:39.303Z","dependency_job_id":"8cfb4301-2b99-4062-88c1-a48f0c607cc9","html_url":"https://github.com/leptos-null/ClassDumpRuntime","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leptos-null%2FClassDumpRuntime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leptos-null%2FClassDumpRuntime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leptos-null%2FClassDumpRuntime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leptos-null%2FClassDumpRuntime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leptos-null","download_url":"https://codeload.github.com/leptos-null/ClassDumpRuntime/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244838694,"owners_count":20518869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["class-dump","classdump","objc-runtime","objective-c"],"created_at":"2024-10-12T11:36:19.562Z","updated_at":"2025-03-21T17:32:37.772Z","avatar_url":"https://github.com/leptos-null.png","language":"Objective-C","readme":"## ClassDumpRuntime\n\nCreate human readable interfaces from runtime Objective-C environments.\n\nThis library is intended to be compiled with Xcode or [Theos](https://github.com/theos/theos).\nThe library can be loaded into an Objective-C runtime to view class or protocol headers.\n\nExample:\n\n```objc\nCDClassModel *ortho = [CDClassModel modelWithClass:[NSOrthography class]];\n\n[ortho linesWithComments:NO synthesizeStrip:YES];\n/*\n@interface NSOrthography : NSObject \u003cNSCopying, NSSecureCoding\u003e\n\n@property (class, readonly) BOOL supportsSecureCoding;\n\n@property (readonly, copy) NSString *dominantScript;\n@property (readonly, copy) NSDictionary *languageMap;\n\n+ (id)orthographyWithDominantScript:(id)a0 languageMap:(id)a1;\n+ (id)_scriptNameForScriptIndex:(unsigned long long)a0;\n+ (void)initialize;\n+ (id)allocWithZone:(struct _NSZone { } *)a0;\n\n- (id)initWithDominantScript:(id)a0 languageMap:(id)a1;\n- (unsigned int)orthographyFlags;\n- (id)dominantLanguage;\n- (id)allScripts;\n- (id)languagesForScript:(id)a0;\n- (id)replacementObjectForPortCoder:(id)a0;\n- (id)dominantLanguageForScript:(id)a0;\n- (id)allLanguages;\n- (id)initWithCoder:(id)a0;\n- (void)encodeWithCoder:(id)a0;\n- (BOOL)isEqual:(id)a0;\n- (unsigned long long)hash;\n- (id)description;\n- (id)copyWithZone:(struct _NSZone { } *)a0;\n- (Class)classForCoder;\n\n@end\n*/\n\n[ortho linesWithComments:NO synthesizeStrip:NO];\n/*\n@interface NSOrthography : NSObject \u003cNSCopying, NSSecureCoding\u003e\n\n@property (class, readonly) BOOL supportsSecureCoding;\n\n@property (readonly, copy) NSString *dominantScript;\n@property (readonly, copy) NSDictionary *languageMap;\n\n+ (id)orthographyWithDominantScript:(id)a0 languageMap:(id)a1;\n+ (id)_scriptNameForScriptIndex:(unsigned long long)a0;\n+ (void)initialize;\n+ (id)allocWithZone:(struct _NSZone { } *)a0;\n+ (BOOL)supportsSecureCoding;\n\n- (id)initWithDominantScript:(id)a0 languageMap:(id)a1;\n- (unsigned int)orthographyFlags;\n- (id)dominantScript;\n- (id)languageMap;\n- (id)dominantLanguage;\n- (id)allScripts;\n- (id)languagesForScript:(id)a0;\n- (id)replacementObjectForPortCoder:(id)a0;\n- (id)dominantLanguageForScript:(id)a0;\n- (id)allLanguages;\n- (id)initWithCoder:(id)a0;\n- (void)encodeWithCoder:(id)a0;\n- (BOOL)isEqual:(id)a0;\n- (unsigned long long)hash;\n- (id)description;\n- (id)copyWithZone:(struct _NSZone { } *)a0;\n- (Class)classForCoder;\n\n@end\n*/\n\n[ortho.protocols[1] linesWithComments:NO synthesizeStrip:YES];\n/*\n@protocol NSSecureCoding \u003cNSCoding\u003e\n\n+ (BOOL)supportsSecureCoding;\n\n@end\n*/\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleptos-null%2Fclassdumpruntime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleptos-null%2Fclassdumpruntime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleptos-null%2Fclassdumpruntime/lists"}