I'm pretty new to Objective-C and trying to figure out what is the accepted convention to define a reusable identifier for either collection / table view cell.
In Swift, I've seen something like
class SomeCell: UITableViewCell {
static let identifier = "SomeCell"
// ... other
}
How do Objective-C developers deal with this?