NSObject - leacode/SwiftWings GitHub Wiki
Source: Sources/Extensions/Foundation/NSObject/NSObject+Name.swift
Tests: Tests/Extensions/NSObject
- Adds
class var classNameandvar classNamethat returnString(describing:)for the type/instance. - Available on non-macOS platforms where Foundation doesn’t already expose these selectors.
- Tests cover both instance and type usage to guard against regressions.
final class MyView: NSObject {}
print(MyView.className) // "MyView"
print(MyView().className) // "MyView"