繁体   English   中英

在集合视图的cellForItemAtIndexPath方法中更改框架

[英]Changing Frame in Collection View's cellForItemAtIndexPath Method

我是IOS的新手。

我已使用收藏夹视图。 我在其中使用原型单元格。 我没有在应用程序中使用自动版式。

我需要更改按钮的框架并在cellForItemAtIndexPath查看。 但是,当我第一次滚动到下一个单元格时,它并没有第一次反映出来。 我只能看到没有任何按钮或视图的空白。 我检查了所有框架是否正确更新。 我仍然看不到任何东西。

虽然如果我再次去上一个电话然后再回来,它将可以正常显示。

请在下面找到cellForItemAtIndexPath代码

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{    
     Feed *feed;
    NSMutableAttributedString * string;

    feed = [arrTop objectAtIndex:indexPath.row];

    ShuffleCell *myCell = [collectionView
                         dequeueReusableCellWithReuseIdentifier:@"ShuffleCell"
                         forIndexPath:indexPath];

    myCell.index = indexPath;


    myCell.delegate = self;


   // Below frame changes are not working


        myCell.vwBack.frame = collect.frame;
        myCell.imgShare.frame = CGRectMake(myCell.imgShare.frame.origin.x, myCell.imgShare.frame.origin.y, self.view.frame.size.width,self.view.frame.size.width );
        myCell.lblText.center = CGPointMake(myCell.imgShare.frame.size.width / 2, myCell.imgShare.frame.size.height / 2);
        myCell.lblText.frame = CGRectMake(20
                                          , myCell.imgShare.frame.origin.y + 20, self.view.frame.size.width - 20,self.view.frame.size.width -20);

        int totHeight = (collect.frame.size.height - self.view.frame.size.width);
        myCell.vwBtn.frame = CGRectMake(myCell.vwBtn.frame.origin.x, collect.frame.size.height -totHeight, myCell.vwBtn.frame.size.width, totHeight);
        [myCell.vwBtn setFrame:CGRectMake(myCell.vwBtn.frame.origin.x, collect.frame.size.height -totHeight, myCell.vwBtn.frame.size.width, totHeight)];
        myCell.btnFavoriteBack.frame = CGRectMake(myCell.btnFavoriteBack.frame.origin.x, 0, myCell.btnFavoriteBack.frame.size.width, totHeight/3);
        [myCell.btnFavoriteBack setFrame:CGRectMake(myCell.btnFavoriteBack.frame.origin.x, 0, myCell.btnFavoriteBack.frame.size.width, totHeight/3)];
        myCell.btnShare.frame = CGRectMake(myCell.btnShare.frame.origin.x, (totHeight/3), myCell.btnShare.frame.size.width, totHeight/3);
        myCell.btnReport.frame = CGRectMake(myCell.btnReport.frame.origin.x, (totHeight/3)*2, myCell.btnReport.frame.size.width, totHeight/3);
        myCell.vwLikeBtn.frame = CGRectMake(self.view.frame.size.width - 82, (totHeight/3 - 32)/2, 82,32);

        NSLog(@"Y :- %f",myCell.vwBtn.frame.size.height);





    return myCell;

我还附有相同的屏幕截图。

感谢帮助。

添加此行应解决此问题。 让单元的子视图将其框架转换为约束。

cell.label.translatesAutoresizingMaskIntoConstraints = YES;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM