So, I have implemented a protocol, called ResuableCell
protocol ResuableCell{ static func resuableIdentifier()->String} Now, I wish to conform UICollectionViewCell to it, so that all my subsequent UICollectionViewCell will be formed to implement such a method.
Anyone knows how to achieve this?
Thanks
extension UICollectionViewCell: ResuableCell {}