swift VS NSObject
Any class that does not inherit from another class is known as a base class.
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.
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.
According to the language reference, there is no requirement for classes to subclass any standard root class, so you can include or omit a superclass as needed.
Note that omitting a superclass from the class declaration, doesn‘t assign a implicit base superclass of any kind. It defines a base class, which will effectively become the root for an independent class hierarchy.
From the language reference:
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.
Trying to reference super
from a class without a super class (i.e. a base class) will result in a compile time error
‘super‘ members cannot be referenced in a root class
https://stackoverflow.com/questions/24057525/swift-native-base-class-or-nsobject
https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html
swift中,一個對象可以不繼承自NSObject- 繼續自NSObject 可以使用KVC方法給屬性設置數值 =》如果是模型對象,最好還是使用NSObject
- 如果對象,沒有屬性,或者不依賴KVC , 可以建立一個沒有父類的對象!, 對象的量級比較輕,加載時,就在內存創建
什麽,內存消耗小 https://blog.csdn.net/hsf_study/article/details/49357225
swift VS NSObject