Search for a command to run...
Object-oriented superset of C that adds Smalltalk-style message passing and a dynamic runtime. Inherits C syntax, primitives, and flow control while adding classes, methods, protocols, and categories. Designed for deferred binding and runtime introspection, so many decisions happen at runtime rather than compile time.
Apple adopted it when acquiring NeXT and made it the primary language for macOS and iOS development for decades. Cocoa and Cocoa Touch frameworks are built on Objective-C, and the language remains central to Apple platforms despite Swift. It still powers much of the system and third-party app ecosystem, and interoperates with Swift through the Objective-C runtime.
Key capabilities:
Developers use Objective-C to build and maintain native macOS and iOS apps, maintain legacy codebases that predate Swift, implement frameworks and shared libraries consumed by Swift code, and access lower-level APIs exposed through the Objective-C runtime. Xcode provides full tooling support including ARC, debugging, and Swift interoperability.