嗨,大家好,我正在开发一个我需要的应用程序"分隔线"在UICollectionViewCell
的每一行之后......(例如在每行之后的UITableView
中)。
任何人都知道如何获得这个......因为我是iOS的新手..
提前致谢。
答案 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];