14 lines
232 B
Swift
14 lines
232 B
Swift
import UIKit
|
|
|
|
extension UITableViewCell {
|
|
static var name: String {
|
|
return String(describing: self)
|
|
}
|
|
}
|
|
|
|
extension UICollectionViewCell {
|
|
static var name: String {
|
|
return String(describing: self)
|
|
}
|
|
}
|