我需要在UITableViewCell
内更改IBOutlet
的宽度约束。通常我会为约束创建一个circle_id
,但我该怎么做呢,因为它是一个动态原型tableView?请建议
谢谢!
答案 0 :(得分:0)
您可以按照以下方式执行此操作
通过动态创建新视图
UIView *v=[[UIView alloc]init];
v.frame=CGRectMake(0, 0, 500, 250);
或者通过标记访问视图或访问-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
UIView *v=[cell.contentView.subviews objectAtIndex:0];
v.frame=CGRectMake(0, 0, 500, 250);
希望这有帮助