Files
DiffableDataSources/Examples/Example-iOS/Extension.swift
T
2019-06-24 12:03:35 +09:00

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)
}
}