gpt4 book ai didi

ios - 如何在UITableViewCell中居中放置图像?

转载 作者:行者123 更新时间:2023-12-01 18:20:13 25 4
gpt4 key购买 nike

我使用以下代码在单元格内创建图像:

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"CellIdentifier"] autorelease];


switch (indexPath.row) {
...
case 5:
cell.imageView.image = [UIImage imageNamed:@"Search.png"];
break;
default:
break;
}
return cell;
}

如何在单元格中居中放置图像?我是否必须继承UITableViewCell?

最佳答案

更好,更有效的方法是使用自定义UITableViewCell 。因此,在功能上,您可以轻松自定义TableViewCell。

您可以通过代码和“界面”构建器来完成此操作。

Custom UITableViewCell Using Interface Builder

Customize Table View Cells for UITableView

关于ios - 如何在UITableViewCell中居中放置图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17872237/

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