gpt4 book ai didi

ios - 更改 uitableViewCell 内的约束

转载 作者:行者123 更新时间:2023-12-01 16:33:49 27 4
gpt4 key购买 nike

我需要更改 UIView 的宽度约束在 UITableViewCell 内.通常我会创建一个 IBOutlet到约束,但我该怎么做,因为它是一个动态原型(prototype) tableView ?请建议

谢谢!

最佳答案

您可以通过以下方式执行此操作

  • 通过动态创建新 View
    UIView *v=[[UIView alloc]init];
    v.frame=CGRectMake(0, 0, 500, 250);
  • 或者通过标签访问 View 或访问 -(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 中的内容 View subview
    UIView *v=[cell.contentView.subviews objectAtIndex:0];
    v.frame=CGRectMake(0, 0, 500, 250);

  • 希望这可以帮助

    关于ios - 更改 uitableViewCell 内的约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29985726/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com