nst/runtimebrowser

Objective-C Runtime Browser, for Mac OS X and iOS

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 14 minutes ago
Added to GitGenius on September 19th, 2026
Created on March 22nd, 2011
Open Issues & Pull Requests: 16 (+0)
GitHub issues: Enabled
Number of forks: 521
Total Stargazers: 3,659 (+0)
Total Subscribers: 157 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 1
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 487 days
Stale 30+ days: 1
Stale 90+ days: 1

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

RuntimeBrowser is a class browser for the Objective-C runtime on iOS and macOS that provides introspection into loaded classes and their methods.

The tool solves the problem of understanding what classes and methods are available in the Objective-C runtime at any given moment. It works by giving full access to all classes loaded in the runtime, allowing dynamic loading of new modules, displaying every method implemented on each class, and presenting information in header file format. On iOS, it serves headers through an HTTP port and can instantiate classes and invoke methods with runtime parameters. On macOS, it offers syntax colorization and supports drag-and-drop of frameworks and headers.

The iOS version suits developers who need to inspect runtime state on device or simulator, with features for browsing by class tree, image, or indexed list, plus search capabilities. The macOS version is better for static analysis and exploration, supporting browsing by class tree, image, list, or protocols. Both versions handle Swift classes, structs, properties, and protocols alongside Objective-C. The tool includes a command-line interface, runtime_cli, which can print headers for individual classes, generate Swift declarations, and sweep entire system directories to extract all available runtime information for testing and comparison purposes.

The project has maintained steady activity with regular updates to both the iOS and macOS versions. The tool continues to be actively refined to support modern runtime features and Swift interoperability. Development includes comprehensive testing through the sweep functionality, which validates changes against the entire system runtime before and after modifications.