我已经设置了几个集合视图,当我生成每个单元格时,我想显示特定视图控制器的更改大小。我的代码如下所示:
YCFrequencyMonthCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"graphMonth" forIndexPath:indexPath];
cell.MonthLabel.text = self.graphDataArray[indexPath.row - 3];
UIView *sentView = cell.graphMonthlySentView;
CGRect sentFrame;
sentFrame.size.width = 50;
sentView.frame = sentFrame;
return cell;
我没有错误,也不知道为什么它不起作用。当我在CollectionViewController之外做它时似乎工作。 请帮忙。感谢。