在集合视图单元格中设置文本时出错

时间:2013-01-11 21:58:54

标签: ios uicollectionview uicollectionviewcell

当我在设置之后将值设为nslog时,它为NULL,任何单词为什么?

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 个答案:

答案 0 :(得分:1)

在自定义单元格中初始化labelDisplay。

//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;
}