我正在使用 CGContext 绘制线条,但我想让它的边缘模糊。我检查了阴影,但在阴影中,线条的边缘并不柔软和光滑。请告诉我我该怎么做才能使线条的边缘模糊。
这是代码链接
我不完全确定模糊线条的“边缘”是什么意思,但你可以尝试先用更大的线宽绘制相同的路径,然后用逐渐变细和变暗的线来绘制路径。
画线的其他方式..我希望这对画线和增加线宽很有用...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//// DRAW LINE....
UIView *lineView = [[[UIView alloc] initWithFrame:CGRectMake(10, 30, cell.contentView.bounds.size.width, 3)] autorelease];
//Replece the 3 and put the 5 for Increse the line Width
lineView.backgroundColor = [UIColor redColor];
lineView.autoresizingMask = 0x5f;
[cell.contentView addSubview:lineView];
}