We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2367fb commit fc5b918Copy full SHA for fc5b918
1 file changed
Projects/Presentation/Sources/Common/Extension/NSObject+.swift
@@ -0,0 +1,18 @@
1
+//
2
+// NSObject+.swift
3
+// Presentation
4
5
+// Created by 이동현 on 7/20/25.
6
7
+
8
+import Foundation
9
10
+public extension NSObject {
11
+ var className: String {
12
+ return String(describing: type(of: self))
13
+ }
14
15
+ class var className: String {
16
+ return String(describing: self)
17
18
+}
0 commit comments