Run your labelDisplay in a custom cell.
//customColectionCell.h @property(strong,nonomatic) NSString *labelText; -(void)setCellLabelText:(NSString *)labelText; //customCollectionCell.m -(id)init{ //init cellLabel and addSubView to customCell } //Than set label in custom method -(void)setCellLabelText:(NSString *)labelText{ _labelText = labelText; sefl.labelDisplay.text = labelText; }
source share