1

when I nslog the value after setting it it is 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];
Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140
William Falcon
  • 9,813
  • 14
  • 67
  • 110

1 Answers1

1

init your labelDisplay in 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;
}
LE SANG
  • 10,955
  • 7
  • 59
  • 78