クラス名を取得するExtension
タイポ対策のためにクラス名を取得したいと思ったときに、いろいろ方法があったので残しておきます。
実装
import Foundation
extension NSObject {
// from class
class var className: String {
return String(describing: self)
}
// from instance
var className: String {
return String(describing: type(of: self))
}
}
import Foundation
extension NSObject {
// from class
class var className: String {
return String(describing: self)
}
// from instance
var className: String {
return String(describing: type(of: self))
}
}
上のやつがクラスから呼ばれるやつで、下のやつがインスタンスから呼ばれるやつです。
NSObject
というのはよく理解していないのですが、ほとんどのクラスの継承元となっているクラスで、強いて言うならルートクラスみたいなやつです。
挙動
print(UIView.className)
// "UIView"が出力される
let myLabel = UILabel()
print(myLabel.className)
// "UILabel"が出力される
応用例
static let identifier = HistoryDateCell.className
print(UIView.className)
// "UIView"が出力される
let myLabel = UILabel()
print(myLabel.className)
// "UILabel"が出力される
static let identifier = HistoryDateCell.className
cellのidentifierを登録するとき等に便利です!
他にも、インスタンス名とかファイル名とか取得する方法ってあるんですかね
Author And Source
この問題について(クラス名を取得するExtension), 我々は、より多くの情報をここで見つけました https://qiita.com/miyakooti/items/b243cfded6d4e534dc94著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .