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 Debug 10x faster with Proxyman. Your ultimate tool to capture HTTPs requests/ responses, natively built for iPhone and macOS. You’d be surprised how much you can learn about any system by watching what it does over the network.
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.