gpt4 book ai didi

iphone - 在 UICollectionViewCell 中添加分隔符,就像在 UITableViewCell 中添加分隔符一样

转载 作者:行者123 更新时间:2023-12-03 19:26:03 26 4
gpt4 key购买 nike

我正在开发一个应用程序,其中我需要在 UICollectionViewCell 的每一行之后添加“分隔线”...(就像在 UITableView 中的每一行之后)。

有人知道如何获得这个吗?

最佳答案

创建一个黑色背景、高 1 像素、宽 320 像素的 UIView?

例如

对于水平线

UIView *horizontalLine = [[UIView alloc]initWithFrame:CGRectMake(x cordinate,y cordinate,1,linelenth)];
horizontalLine.backgroundColor = [UIColor blackColor];
[self.view addSubview:horizontalLine];
[horizontalLine release];

对于垂直线

UIView *verticalLine = [[UIView alloc]initWithFrame:CGRectMake(x cordinate,y cordinate,linelenth,1)];
verticalLine.backgroundColor = [UIColor blackColor];
[self.view addSubview:verticalLine];
[verticalLine release];

关于iphone - 在 UICollectionViewCell 中添加分隔符,就像在 UITableViewCell 中添加分隔符一样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23356569/

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