Swift version: 5.10
Swift allows you to define a custom class as inheriting from another, which means it gains the functionality of the original class while being able to add its own. This is used extensively on Apple platforms: UIButton
inherits from UIControl
, which inherits from UIView
, which inherits from UIResponder
, which inherits from NSObject
, for example.
This approach allows you to create something new by building upon and tweaking existing functionality. If you want to create a custom view for your app, you don’t need to go all the way back to basics – you can just inherit from UIView
and make whatever changes you need. This means you automatically benefit from things like background colors, Auto Layout, CALayer
, and more.
While inheritance is both power and used extensively, it does create some problems. The main two are first that it’s available only with classes and so Swift’s structs and enums are excluded, and the second are that it creates tight coupling, where one piece of code depends heavily on another piece of code.
SPONSORED Alex is the iOS & Mac developer’s ultimate AI assistant. It integrates with Xcode, offering a best-in-class Swift coding agent. Generate modern SwiftUI from images. Fast-apply suggestions from Claude 3.5 Sonnet, o3-mini, and DeepSeek R1. Autofix Swift 6 errors and warnings. And so much more. Start your 7-day free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.