I have a strange situation, in some cases I want to disable cell reusable "feature" in the cell. If some condition met I dont' wan't reuse that cell.
What is the beautiful method for this?(I know the purpose of the reuseIdentifier, but I have some strange dependency so, no I want from this cell to become none reusable.)
I can't modify the reuseIdentifier because it is a read only property. I can override the getter "- (NSString *)reuseIdentifier", but I don't like this idea.
Any other suggestion for this problem?