标签:
如果想自己在视图中加一条线,和UITableView的cell的分割线颜色粗细一样,那么可以:
UIView *lineView = [[UIView alloc] initWithFrame:CGRectMake(..., ..., ..., 0.5)];
lineView.backgroundColor = [UIColor colorWithRed:0.7 green:0.7 blue:0.7 alpha:1];
标签:
原文地址:http://www.cnblogs.com/shilang2015/p/4599950.html