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

时间:2014-04-29 05:54:08

标签: iphone uicollectionviewcell

嗨,大家好,我正在开发一个我需要的应用程序"分隔线"在UICollectionViewCell的每一行之后......(例如在每行之后的UITableView中)。

任何人都知道如何获得这个......因为我是iOS的新手..

提前致谢。

1 个答案:

答案 0 :(得分:-4)

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

例如

对于水平线

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];