gpt4 book ai didi

iphone - 如何在 UITableViewCell 中画一条线

转载 作者:行者123 更新时间:2023-12-03 18:40:45 25 4
gpt4 key购买 nike

我需要在 UITableviewcell 中画一条线。

有什么可能的方法来做到这一点吗?

如果有人对在 UITableview 单元格中画一条线有任何想法,请回复我。

谢谢。

最佳答案

如果线条是水平或垂直的,您可以添加一个黑色的 UIView。像这样。

UIView *lineView = [[[UIView alloc] initWithFrame:CGRectMake(0, 25, cell.contentView.bounds.size.width, 1)] autorelease];
lineView.backgroundColor = [UIColor blackColor];
lineView.autoresizingMask = 0x3f;
[cell.contentView addSubview:lineView];

上面的是一条水平线。如果您需要在单元格中间有一条垂直线,则以下代码有效

UIView *lineView = [[[UIView alloc] initWithFrame:CGRectMake((cell.contentView.bounds.size.width/2), 0, 1, cell.contentView.bounds.size.height)] autorelease];

关于iphone - 如何在 UITableViewCell 中画一条线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4165409/

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