I am aware of this question regarding how we can get a readable class name of an objective-c class in Swift.
What I want to achieve is getting the readable class name of
In objective-c your best option is:
NSString *yourCellName = NSStringFromClass([yourCell class]).pathExtension;