如何在集合视图控制器中更改UIView的大小

时间:2015-02-24 17:48:09

标签: ios objective-c uiview uicollectionview

我已经设置了几个集合视图,当我生成每个单元格时,我想显示特定视图控制器的更改大小。我的代码如下所示:

    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之外做它时似乎工作。 请帮忙。感谢。

0 个答案:

没有答案