Searching for: Class Methods in Swift
Inheritance
Language: Swift

Inheritance is used to inherit another class' members, including fields and methods. A subclass extends a base class' members.

Access Modifiers
Language: Swift

Access modifiers restrict or permit direct access to a member (method, class, field, etc.) outside of its scope.

Initializer
Language: Swift

An initializer is a special method used to build a class object on initialization (instantiation). Known as a constructor in other languages.


< Previous Page   |