4

The Apple's developer documentation says:

NSObject is The root class of most Objective-C class hierarchies, from which subclasses inherit a basic interface to the runtime system.

I wonder what is the root class of all classes in Swift in the example below:

class MyClass {
....
} 
Hamish
  • 78,605
  • 19
  • 187
  • 280
T D Nguyen
  • 7,054
  • 4
  • 51
  • 71

1 Answers1

7

Swift classes do not inherit from a universal base class. Classes you define without specifying a superclass automatically become base classes for you to build upon.

https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Inheritance.html

Is that what you were looking for? :)

André Slotta
  • 13,774
  • 2
  • 22
  • 34