我希望有一个带有一些标签的表格,然后在标签之后添加一个文本字段 UI。
我希望标签具有一些固定大小(比如 150),并且单元格宽度的其余部分由文本字段占据。
因此我在函数中设置了 cell.textLabel 的框架
cellForRowAtIndexPath
这样
[cell.textLabel setFrame:CGRectMake(cell.textLabel.frame.origin.x, cell.textLabel.frame.origin.y, 150, cell.textLabel.frame.size.height)];
但这似乎不起作用。
任何想法为什么以及我的解决方案是什么?
Best Answer-推荐答案 strong>
为什么不在你的单元格上添加自定义标签...
UILabel *mylabel = [[UILabel alloc] initWithFrame:CGRectMake(5,5, 150, 40)];
[cell.contentView addSubview:mylabel];
否则你需要重写 -LayoutSubViews 方法并且必须继承 UITableViewCell ..
关于ios - 表格单元格 TextLabel 框架宽度自动增加,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/16607159/
|