{"id":13483915,"url":"https://github.com/nygard/class-dump","last_synced_at":"2025-05-14T23:06:58.079Z","repository":{"id":38272849,"uuid":"1629150","full_name":"nygard/class-dump","owner":"nygard","description":"Generate Objective-C headers from Mach-O files.","archived":false,"fork":false,"pushed_at":"2022-04-06T09:30:24.000Z","size":3798,"stargazers_count":3458,"open_issues_count":40,"forks_count":890,"subscribers_count":137,"default_branch":"master","last_synced_at":"2025-04-13T19:50:04.635Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://stevenygard.com/projects/class-dump","language":"Objective-C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nygard.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-04-18T06:08:19.000Z","updated_at":"2025-04-11T14:50:24.000Z","dependencies_parsed_at":"2022-07-12T17:22:18.713Z","dependency_job_id":null,"html_url":"https://github.com/nygard/class-dump","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nygard%2Fclass-dump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nygard%2Fclass-dump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nygard%2Fclass-dump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nygard%2Fclass-dump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nygard","download_url":"https://codeload.github.com/nygard/class-dump/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254243362,"owners_count":22038046,"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":[],"created_at":"2024-07-31T17:01:16.834Z","updated_at":"2025-05-14T23:06:53.025Z","avatar_url":"https://github.com/nygard.png","language":"Objective-C","funding_links":[],"categories":["Objective-C","Tools","OOM-Leaks-Crash","Weapons","\u003ca id=\"830f40713cef05f0665180d840d56f45\"\u003e\u003c/a\u003eMach-O"],"sub_categories":["Reverse Engineering Tools","逆向开发","iOS","\u003ca id=\"9b0f5682dc818c93c4de3f46fc3f43d0\"\u003e\u003c/a\u003e工具"],"readme":"class-dump\n==========\n\nclass-dump is a command-line utility for examining the Objective-C\nsegment of Mach-O files.  It generates declarations for the classes,\ncategories and protocols.  This is the same information provided by\nusing 'otool -ov', but presented as normal Objective-C declarations.\n\nThe latest version and information is available at:\n\n    http://stevenygard.com/projects/class-dump\n\nThe source code is also available from my Github repository at:\n\n    https://github.com/nygard/class-dump\n\nUsage\n-----\n\n    class-dump 3.5 (64 bit)\n    Usage: class-dump [options] \u003cmach-o-file\u003e\n\n      where options are:\n            -a             show instance variable offsets\n            -A             show implementation addresses\n            --arch \u003carch\u003e  choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64)\n            -C \u003cregex\u003e     only display classes matching regular expression\n            -f \u003cstr\u003e       find string in method name\n            -H             generate header files in current directory, or directory specified with -o\n            -I             sort classes, categories, and protocols by inheritance (overrides -s)\n            -o \u003cdir\u003e       output directory used for -H\n            -r             recursively expand frameworks and fixed VM shared libraries\n            -s             sort classes and categories by name\n            -S             sort methods by name\n            -t             suppress header in output, for testing\n            --list-arches  list the arches in the file, then exit\n            --sdk-ios      specify iOS SDK version (will look in /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS\u003cversion\u003e.sdk\n            --sdk-mac      specify Mac OS X version (will look in /Developer/SDKs/MacOSX\u003cversion\u003e.sdk\n            --sdk-root     specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)\n\n- class-dump AppKit:\n\n    class-dump /System/Library/Frameworks/AppKit.framework\n\n- class-dump UIKit:\n\n    class-dump /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/System/Library/Frameworks/UIKit.framework\n\n- class-dump UIKit and all the frameworks it uses:\n\n    class-dump /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/System/Library/Frameworks/UIKit.framework -r --sdk-ios 4.3\n\n- class-dump UIKit (and all the frameworks it uses) from developer tools that have been installed in /Dev42 instead of /Developer:\n\n    class-dump /Dev42/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks/UIKit.framework -r --sdk-root /Dev42/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk\n\n\nLicense\n-------\n\nThis file is part of class-dump, a utility for examining the\nObjective-C segment of Mach-O files.\nCopyright (C) 1997-2019 Steve Nygard.\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n\nContact\n-------\n\nYou may contact the author by:\n   e-mail:  nygard at gmail.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnygard%2Fclass-dump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnygard%2Fclass-dump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnygard%2Fclass-dump/lists"}