Error setting text in collection view cell

when i nslog the value after setting it to NULL, any word why?

CustomCollectionVIewCell *cell =[[CustomCollectionVIewCell alloc]init]; NSString *name =[dict valueForKey:@"filterName"];//works [cell.labelDisplay setText:name];//does not NSLog(@"name = %@",cell.labelDisplay.text); cell.isSelected=NO; [_availableHealthFilters setObject:cell atIndexedSubscript:i]; 
+1
source share
1 answer

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; } 
+1
source

All Articles